Home  /  Education Apps  / Bluetooth Oscilloscope on Windows Pc

Bluetooth Oscilloscope on Windows Pc

Developed By: JOSE MUNOZ

License: Free

Rating: 3,6/5 - 32 votes

Last Updated: April 17, 2024

Download on Windows PC

Compatible with Windows 10/11 PC & Laptop

App Details

Version 1.0
Size 5.9 MB
Release Date August 17, 20
Category Education Apps

App Permissions:
Allows applications to discover and pair bluetooth devices. [see more (6)]

What's New:
New content added. Improve application performance [see more]

Description from Developer:
Bluetooth oscilloscope

The oscilloscope Bluetooth application transforms your phone or tablet on an oscilloscope or voltmeter is connected via Bluetooth to a micro-controlled devi... [read more]

App preview ([see all 25 screenshots]  /  [view video])

App preview

About this app

On this page you can download Bluetooth Oscilloscope and install on Windows PC. Bluetooth Oscilloscope is free Education app, developed by JOSE MUNOZ. Latest version of Bluetooth Oscilloscope is 1.0, was released on 2020-08-17 (updated on 2024-04-17). Estimated number of the downloads is more than 5,000. Overall rating of Bluetooth Oscilloscope is 3,6. Generally most of the top apps on Android Store have rating of 4+. This app had been rated by 32 users, 9 users had rated it 5*, 17 users had rated it 1*.

How to install Bluetooth Oscilloscope on Windows?

Instruction on how to install Bluetooth Oscilloscope on Windows 10 Windows 11 PC & Laptop

In this post, I am going to show you how to install Bluetooth Oscilloscope on Windows PC by using Android App Player such as BlueStacks, LDPlayer, Nox, KOPlayer, ...

Before you start, you will need to download the APK/XAPK installer file, you can find download button on top of this page. Save it to easy-to-find location.

[Note] You can also download older versions of this app on bottom of this page.

Below you will find a detailed step-by-step guide, but I want to give you a fast overview of how it works. All you need is an emulator that will emulate an Android device on your Windows PC and then you can install applications and use it - you see you're playing it on Android, but this runs not on a smartphone or tablet, it runs on a PC.

If this doesn't work on your PC, or you cannot install, comment here and we will help you!

Step By Step Guide To Install Bluetooth Oscilloscope using BlueStacks

  1. Download and Install BlueStacks at: https://www.bluestacks.com. The installation procedure is quite simple. After successful installation, open the Bluestacks emulator. It may take some time to load the Bluestacks app initially. Once it is opened, you should be able to see the Home screen of Bluestacks.
  2. Open the APK/XAPK file: Double-click the APK/XAPK file to launch BlueStacks and install the application. If your APK/XAPK file doesn't automatically open BlueStacks, right-click on it and select Open with... Browse to the BlueStacks. You can also drag-and-drop the APK/XAPK file onto the BlueStacks home screen
  3. Once installed, click "Bluetooth Oscilloscope" icon on the home screen to start using, it'll work like a charm :D

[Note 1] For better performance and compatibility, choose BlueStacks 5 Nougat 64-bit read more

[Note 2] about Bluetooth: At the moment, support for Bluetooth is not available on BlueStacks. Hence, apps that require control of Bluetooth may not work on BlueStacks.

How to install Bluetooth Oscilloscope on Windows PC using NoxPlayer

  1. Download & Install NoxPlayer at: https://www.bignox.com. The installation is easy to carry out.
  2. Drag the APK/XAPK file to the NoxPlayer interface and drop it to install
  3. The installation process will take place quickly. After successful installation, you can find "Bluetooth Oscilloscope" on the home screen of NoxPlayer, just click to open it.

Discussion

(*) is required

Download older versions

Other versions available: 1.0.

Download Bluetooth Oscilloscope 1.0 on Windows PC – 5.9 MB

Bluetooth oscilloscope

The oscilloscope Bluetooth application transforms your phone or tablet on an oscilloscope or voltmeter is connected via Bluetooth to a micro-controlled device such as a PIC, Arduino or Rasberry PI system. The Bluetooth Oscilloscope can display alternating signals (AC) and continuous signals (DC) on your mobile device securely as it connects wirelessly to your micro controller that captures the or DC signals AC and transmits it to your phone or tablet through Bluetooth.
Visit the http://www.profjmunoz.blogspot.com/ page from within the application by pressing the "ONLINE TUTORIALS" icon where you can find tutorials on connecting ac signals and DC to a Arduino system and transmit it to your phone or tablet for view through Bluetooth Oscilloscope application.
The oscilloscope Bluetooth application receives data from your micro system controlled in the following format:

Received Signal = $ Dato1Dato2 #
Example: Yes Data1 and Data2 = 4.25 = 60.5 receives $ 4.2560.5 #
The value of data1 is plotted and the value of data2 is displayed.

When the oscilloscope turns on the green icon on the character "1" micro controlled system is shipped. When the red button is pressed off the character "0" is sent, these values ​​can be used to control the processes that wish, such as a LED on or off, turn on or off sending data etc.
Then the program is conducted in an Arduino system for sending data to your tablet or phone. 11 (RX) and 12 (TX): Arduino 1, a bluetooth module HC-06 was used in the pins. The DC or AC signal is introduced by the analog pin A0:

// include the library code:
#include
//String mensaje,mensaje3;
#include
SoftwareSerial mySerial(11, 12); // RX, TX
char inChar;
// initialize the library with the numbers of the interface pins
LiquidCrystal lcd(8, 3, 4,6, 7,9);
float dato1=1.25;
float dato2=9.45;
String tmp;
unsigned long duracion1;
unsigned long duracion2;

//clipping indicator variables
boolean clipping = 0;

//data storage variables
byte newData = 0;
byte prevData = 0;

//freq variables
unsigned int timer = 0;//counts period of wave
unsigned int period;
int frequency;

// Lee Los DATOS DE Voltaje Pin A0
void readDatos();

void setup() {

Serial.begin(9600);
Serial.begin(9600);

// set up the LCD's number of columns and rows:
lcd.begin(20, 4);
// Print a message to the LCD.
lcd.setCursor(0,0);
lcd.print("Osciloscopio Bth");
//pinMode(A1,INPUT);
mySerial.begin(9600);

}

void loop() {

readDatos();
// Calcula la Frecuencia de la Señal


lcd.setCursor(0,2);
lcd.print("Datos1=");
lcd.print(dato1);
lcd.print("Datos2=");
lcd.print(dato2);
enviarDatos();


while (mySerial.available() > 0)
{
inChar= (mySerial.read());
lcd.setCursor(0,1);
lcd.print("Recibiendo=");
lcd.setCursor(13,1);
lcd.print(inChar);
inChar=' ';

}
delay(100);
}

// Lee los Datos e Voltajes Pueto Analogico A0
void readDatos()
{
//dato1= analogRead (A0);
dato1= (analogRead(A0)*0.00488);
dato2=00.0;
}
// Enviar Datos al Dispositivo Android
void enviarDatos()
{
mySerial.print('$');
readDatos();
mySerial.print(dato1);
mySerial.print(dato1); // Aquí se púede enviar otro dato al Android
mySerial.print ('#');

}
New content added. Improve application performance
Allows applications to discover and pair bluetooth devices.
Allows applications to connect to paired bluetooth devices.
Allows applications to open network sockets.
Allows applications to open network sockets.
Allows applications to access information about networks.
Allows using PowerManager WakeLocks to keep processor from sleeping or screen from dimming.