BTscope

Bluetooth oscilloscope app for Arduino
DonatasG
Download BTscope APK
Version 1.0
Updated on 2024-03-29
Category Tools
Package name com.BTscope
Downloads 5+
BTscope Description
// Arduino Nano example with and HC-05:

// 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 3

void setup() {
BTSerial.begin(9600); // HC-05 default speed in AT command mode
}

void loop() {
static unsigned long previousMillis = 0;
const unsigned long interval = 30; // Set your desired interval in milliseconds
unsigned long currentMillis = millis();

if (currentMillis - previousMillis >= interval) {
previousMillis = currentMillis;
// Your code to read and send data over Bluetooth
val = analogRead(analogPin);
BTSerial.println(val);
}

// Your other non-blocking tasks can go here
// ...
// Avoid using delay() to keep the loop responsive
}
*/

Open up
Download APK for Android
Currently, BTscope APK download is not available. Please proceed to download from the Google Play Store.
Google Play
Get from Play Store
1. Click "Get from Play Store
2. Download BTscope from the Play Store
3. Launch and enjoy BTscope
BTscope APK FAQ

Is BTscope safe for my device?

Open up

What is an XAPK file, and what should I do if the BTscope I downloaded is an XAPK file?

Open up

Can I play BTscope on my computer?

Open up

Search Recommendation