BTscope - Arduino oscilloscope

BTscope - Arduino oscilloscope

DonatasG
May 20, 2024

Trusted App

  • 20.7 MB

    File Size

  • Everyone

  • Android 5.0+

    Android OS

About BTscope - Arduino oscilloscope

Bluetooth oscilloscope app for Arduino

Free app for making a simple Bluetooth oscilloscope with Arduino and HC-05. This simple oscilloscope can be used, for example, in auto electronics to test sensors and other places where high speed isn't needed.

oscilloscope app, oscilloscope for android, Arduino simulator, Arduino bluetooth

```cpp

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

}

Show More

What's new in the latest 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

Videos and Screenshots

  • BTscope - Arduino oscilloscope poster
  • BTscope - Arduino oscilloscope screenshot 1
  • BTscope - Arduino oscilloscope screenshot 2

BTscope - Arduino oscilloscope APK Information

Latest Version
1.0
Category
Tools
Android OS
Android 5.0+
File Size
20.7 MB
Developer
DonatasG
Available on
Content Rating
Everyone
Safe & Fast APK Downloads on APKPure
APKPure uses signature verification to ensure virus-free BTscope - Arduino oscilloscope APK downloads for you.

Old Versions of BTscope - Arduino oscilloscope

APKPure icon

Super Fast and Safe Downloading via APKPure App

One-click to install XAPK/APK files on Android!

Download APKPure
thank icon
We use cookies and other technologies on this website to enhance your user experience.
By clicking any link on this page you are giving your consent to our Privacy Policy and Cookies Policy.
Learn More about Policies