Home  /  Education Apps  / arduino_bt_pcs on Windows Pc

arduino_bt_pcs on Windows Pc

Developed By: c.s.park

License: Free

Rating: 5,0/5 - 1 votes

Last Updated: April 23, 2024

Download on Windows PC

Compatible with Windows 10/11 PC & Laptop

App Details

Version 1.0.0
Size 1.8 MB
Release Date January 02, 24
Category Education Apps

What's New:
22.11.7 Version 1.0.0 출시 [see more]

Description from Developer:
Mount the Bluetooth module on the Arduino board, connect the Bluetooth communication between the mobile phone and the Arduino by operating this app on the mobile phone, and then pr... [read more]

App preview ([see all 16 screenshots])

App preview

About this app

On this page you can download arduino_bt_pcs and install on Windows PC. arduino_bt_pcs is free Education app, developed by c.s.park. Latest version of arduino_bt_pcs is 1.0.0, was released on 2024-01-02 (updated on 2024-04-23). Estimated number of the downloads is more than 10. Overall rating of arduino_bt_pcs is 5,0. Generally most of the top apps on Android Store have rating of 4+. This app had been rated by 1 users, 1 users had rated it 5*, 1 users had rated it 1*.

How to install arduino_bt_pcs on Windows?

Instruction on how to install arduino_bt_pcs on Windows 10 Windows 11 PC & Laptop

In this post, I am going to show you how to install arduino_bt_pcs 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 arduino_bt_pcs 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 "arduino_bt_pcs" 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 arduino_bt_pcs 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 "arduino_bt_pcs" on the home screen of NoxPlayer, just click to open it.

Discussion

(*) is required

Download older versions

Other versions available: 1.0.0.

Download arduino_bt_pcs 1.0.0 on Windows PC – 1.8 MB

Mount the Bluetooth module on the Arduino board, connect the Bluetooth communication between the mobile phone and the Arduino by operating this app on the mobile phone, and then press various buttons provided in the mobile phone to recognize the button presses on the Arduino and perform the desired operation. app that lets you
- Single button: 10 (2 each can be combined in pairs to control 5 types of ON/OFF states)
- Number and alphabet input window and send button to send it to Arduino
(Available for speed control with numbers, etc. Strings and numeric strings available)

(Data transmitted to Arduino when each button is pressed)
A ON button: a. A OFF button: A.
B ON button: b. B OFF button: B.
C ON button: c. C OFF button: C.
D ON button : d. D OFF button : D.
E ON button: e. E OFF button: E.
Send button: Added . to the character/numeric string entered on the left

* The . added at the end is treated as the end of transmission in the Arduino program.

(Program example in Arduino)
The LED connected to the digital port 5 of the Arduino flickers with the A ON and A OFF buttons.
Include SoftwareSerial.h at the beginning.
SoftwareSerial BT(2, 3); // Arduino D2 (RX) is connected to pin 2 (TX) of the Bluetooth module,
// Arduino D3 (TX) is connected to pin 1 (RX) of the Bluetooth module
char inData[10];
int led1 = 5;
int i=0;

void setup() {
Serial.begin(9600); // for uno 9600
BT.begin (9600); // for uno 9600
for(int i=0; i<5; i++){
pinMode(5+i, OUTPUT);
digitalWrite(5+i, LOW);
}
}

void loop() {
while (BT.available() > 0)
{
char recieved = BT.read(); // read 1 byte
inData[i++] = recieved;
if (received == '.')
{
Serial.print(inData);
inData[i] = '\0'; // Clear recieved buffer
i = 0;
}
}

// LED1 on/off
if(strcmp(inData,"a.")==0)
{
digitalWrite(led1, HIGH);
}
if(strcmp(inData,"A.")==0)
{
digitalWrite(led1, LOW);
}
}
22.11.7 Version 1.0.0 출시