Home  /  Tools Apps  / Bluetooth Control for Arduino on Windows Pc

Bluetooth Control for Arduino on Windows Pc

Developed By: merahkemarun

License: Free

Rating: 4,2/5 - 591 votes

Last Updated: December 24, 2023

Download on Windows PC

Compatible with Windows 10/11 PC & Laptop

App Details

Version 1.1
Size 1.9 MB
Release Date May 30, 16
Category Tools Apps

App Permissions:
Allows applications to connect to paired bluetooth devices. [see more (11)]

Description from Developer:
Arduino Bluetooth Relay 4CH App is android application which is used to control 4 channel relay module via Bluetooth with Bluetooth serial communication module support HC-05, HC-06... [read more]

App preview ([see all 9 screenshots])

App preview

About this app

On this page you can download Bluetooth Control for Arduino and install on Windows PC. Bluetooth Control for Arduino is free Tools app, developed by merahkemarun. Latest version of Bluetooth Control for Arduino is 1.1, was released on 2016-05-30 (updated on 2023-12-24). Estimated number of the downloads is more than 100,000. Overall rating of Bluetooth Control for Arduino is 4,2. Generally most of the top apps on Android Store have rating of 4+. This app had been rated by 591 users, 65 users had rated it 5*, 366 users had rated it 1*.

How to install Bluetooth Control for Arduino on Windows?

Instruction on how to install Bluetooth Control for Arduino on Windows 10 Windows 11 PC & Laptop

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

Discussion

(*) is required

Download older versions

Other versions available: 1.1.

Download Bluetooth Control for Arduino 1.1 on Windows PC – 1.9 MB

Arduino Bluetooth Relay 4CH App is android application which is used to control 4 channel relay module via Bluetooth with Bluetooth serial communication module support HC-05, HC-06, or HC-07, Using Arduino or AVR

i am test with arduino UNO and serial commnunication library to connected RX pin 10 and TX pin 11.
you can use arduino uno or arduino leonardo etc...

Fitur App:
-control 4 channel on/off ralay
-control All channel ON
-control All channel OFF
-download file Program Arduino_Bluetooth_Ralay_4ch.ino
-download file Tutorial PDF with schemmatic

Download File:
-arduino project ZIP : https://goo.gl/Vq1n9D
-tutorial & schematic wiring PDF : https://goo.gl/b2UVY1

or you can
Copy program here to Arduino IDE

/*
Relay IN1 connected to PinOut 2 Arduino
Relay IN2 connected to PinOut 3 Arduino
Relay IN3 connected to PinOut 4 Arduino
Relay IN4 connected to PinOut 5 Arduino
--->you can connected to relay modul 4 channel

Serial data sending from Arduino Bluetooth Relay 4CH.apk
data '1'-'4' to on is Ralay CH 1-4
data 'A'-'D' to off is Ralay CH 1-4
data '9' to on ALL CH 1-4
data 'I' to off ALL CH 1-4
*/

#include <SoftwareSerial.h>
SoftwareSerial mySerial(10, 11); //Pin10 RX , Pin 11 TX connected to--> Bluetooth TX,RX

#define relay1 2
#define relay2 3
#define relay3 4
#define relay4 5

char val;
void setup() {
pinMode(relay1,OUTPUT);
pinMode(relay2,OUTPUT);
pinMode(relay3,OUTPUT);
pinMode(relay4,OUTPUT);
digitalWrite(relay1,HIGH);
digitalWrite(relay2,HIGH);
digitalWrite(relay3,HIGH);
digitalWrite(relay4,HIGH);
mySerial.begin(9600);
Serial.begin(9600);
}

void loop() {
//cek data serial from bluetooth android App
if( mySerial.available() >0 ) {
val = mySerial.read();
Serial.println(val);
}
//Relay is on
if( val == '1' ) {
digitalWrite(relay1,LOW); }
else if( val == '2' ) {
digitalWrite(relay2,LOW); }
else if( val == '3' ) {
digitalWrite(relay3,LOW); }
else if( val == '4' ) {
digitalWrite(relay4,LOW); }
//relay all on
else if( val == '9' ) {
digitalWrite(relay1,LOW);
digitalWrite(relay2,LOW);
digitalWrite(relay3,LOW);
digitalWrite(relay4,LOW);
}
//relay is off
else if( val == 'A' ) {
digitalWrite(relay1,HIGH); }
else if( val == 'B' ) {
digitalWrite(relay2,HIGH); }
else if( val == 'C' ) {
digitalWrite(relay3,HIGH); }
else if( val == 'D' ) {
digitalWrite(relay4,HIGH); }
//relay all off
else if( val == 'I' ) {
digitalWrite(relay1,HIGH);
digitalWrite(relay2,HIGH);
digitalWrite(relay3,HIGH);
digitalWrite(relay4,HIGH);
}

}
Allows applications to connect to paired bluetooth devices.
Allows applications to discover and pair bluetooth devices.
Allows applications to set the wallpaper.
Allows applications to set the wallpaper hints.
Allows an application to write to external storage.
Allows applications to open network sockets.
Allows applications to access information about Wi-Fi networks.
Allows applications to access information about networks.
Allows an app to create windows using the type TYPE_APPLICATION_OVERLAY, shown on top of all other apps.
This constant was deprecated in API level 21. No longer enforced.
Allows an application to read from external storage.