BTscope - Arduino oscilloscope Android

BTscope - Arduino oscilloscope

Bluetooth oscilloscope app for Arduino or ESP32

Features & Capabilities

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
}

User Growth & Download Statistics

App
By:
DonatasG
Downloads:
465 11
Version:
1.0 Last updated: 2024-03-29
Version code:
1
Creation date:
2024-03-28
Publisher country:
LT LT
Permissions:
  • android.permission.ACCESS_FINE_LOCATION Very high risk
  • android.permission.BLUETOOTH Moderate risk
  • android.permission.BLUETOOTH_ADMIN Moderate risk
  • android.permission.INTERNET Low risk
  • com.BTscope.DYNAMIC_RECEIVER_NOT_EXPORTED_PERMISSION
Size:
22.31MB
Email:
do*****@gmail.com
URLs:
Privacy policy
Full description:
See detailed description
Source:
Google Play Store
Data ingested on:
2026-06-06
Compare stats and ranking:

Contact the developer

Chrome-Stats does not own this Android app. Please use these information below to contact the Android app developer.
Developed by:
DonatasG
Google Play Store
https://play.google.com/store/apps/details?id=com.BTscope
Email:
do*****@gmail.com

Best BTscope - Arduino oscilloscope Alternatives

Here are some Android apps that are similar to BTscope - Arduino oscilloscope: