Our website uses necessary cookies to enable basic functions and optional cookies to help us to enhance your user experience. Learn more about our cookie policy by clicking "Learn More".
Accept All Only Necessary Cookies
BTscope icon

BTscope

Arduino oscilloscope

DonatasG
1.0
  • May 20, 2024
    Update date
  • Security
  • Everyone
  • Android 5.0+
    Android OS

About BTscope

Bluetooth oscilloscope app for Arduino or ESP32

Description:

A free app for creating a simple Bluetooth oscilloscope with Arduino or ESP32. The app includes an example using an HC-05 module and Arduino, but it is also compatible with other modules. This simple oscilloscope can be used in various scenarios, such as automotive electronics for testing sensors, and in other applications where high-speed data isn't required. It can also serve as an educational tool for learning about signals.

Keywords:

Oscilloscope app, oscilloscope for Android, Arduino simulator, Arduino Bluetooth

Sample Code for Arduino and HC-05:

// Example for Arduino Nano with HC-05 module:

// Pinout:

// VCC --> Vin

// TXD --> pin 10

// RXD --> pin 11

// GND --> GND

#include "SoftwareSerial.h"

SoftwareSerial BTSerial(10, 11); // RX | TX

int val = 0; // Variable to store the read value

int analogPin = A7; // Potentiometer wiper (middle terminal) connected to analog pin A7

void setup() {

BTSerial.begin(9600); // HC-05 default baud rate in AT command mode

}

void loop() {

static unsigned long previousMillis = 0;

const unsigned long interval = 30; // Desired interval in milliseconds

unsigned long currentMillis = millis();

if (currentMillis - previousMillis >= interval) {

previousMillis = currentMillis;

// Read the analog value and send it over Bluetooth

val = analogRead(analogPin);

BTSerial.println(val);

}

// Add any non-blocking tasks here

// Avoid using delay() to maintain a responsive loop

}

Show More

Additional APP Information

Latest Version

1.0

Uploaded by

ทีคนเดิม เพิ่มเติมไม่มี

Requires Android

Android 5.0+

Available on

Content Rating

Everyone

Security Report

What's New in the Latest Version 1.0

Last updated on May 20, 2024

Minor bug fixes and improvements. Install or update to the newest version to check it out!

Show More
Security Check Completed
No Virus
No Spyware
No Malware
No Virus
No Spyware
No Malware
Package Name:com.BTscope
SHA-256:a4af80e8d9c3e5aebffd543648532e9a6efa7d9839834e90fb97e2844f0b2999
SHA-1:f6e3bf608a3d21bfed480f0df273fe04cbc08a75
Show More
Verified by: APKPURE

BTscope Screenshots

BTscope posterBTscope screenshot 1BTscope screenshot 2

Related Tags

Popular Articles In Last 24 Hours

Subscribe to APKPure
Be the first to get access to the early release, news, and guides of the best Android games and apps.
No thanks
Sign Up
Subscribed Successfully!
You're now subscribed to APKPure.