Home  /  Tools Apps  / BTduino - Arduino - Bluetooth on Windows Pc

BTduino - Arduino - Bluetooth on Windows Pc

Developed By: Chung Siu Wing, David

License: Free

Rating: 4,4/5 - 31 votes

Last Updated: December 23, 2023

Download on Windows PC

Compatible with Windows 10/11 PC & Laptop

App Details

Version 1.7
Size 1.5 MB
Release Date November 30, 15
Category Tools Apps

App Permissions:
Allows an application to write to external storage. [see more (7)]

What's New:
修正Orientation Mode輸出值 [see more]

Description from Developer:
BTduino Bluetooth device is using a mobile phone (Bluetooth) connected to the Arduino application. This program now provides keypad mode and the game controller module. Later will... [read more]

App preview ([see all 6 screenshots])

App preview

About this app

On this page you can download BTduino - Arduino - Bluetooth and install on Windows PC. BTduino - Arduino - Bluetooth is free Tools app, developed by Chung Siu Wing, David. Latest version of BTduino - Arduino - Bluetooth is 1.7, was released on 2015-11-30 (updated on 2023-12-23). Estimated number of the downloads is more than 1,000. Overall rating of BTduino - Arduino - Bluetooth is 4,4. Generally most of the top apps on Android Store have rating of 4+. This app had been rated by 31 users, 3 users had rated it 5*, 23 users had rated it 1*.

How to install BTduino - Arduino - Bluetooth on Windows?

Instruction on how to install BTduino - Arduino - Bluetooth on Windows 10 Windows 11 PC & Laptop

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

Discussion

(*) is required

Download older versions

Other versions available: 1.7.

Download BTduino - Arduino - Bluetooth 1.7 on Windows PC – 1.5 MB

BTduino Bluetooth device is using a mobile phone (Bluetooth) connected to the Arduino application. This program now provides keypad mode and the game controller module. Later will join PWM, various sensors and buttons matching functions. Bluetooth user to be connected to the receiving device, such as HC06 Arduino. HC06 Arduino Bluetooth connection settings are as follows:
1. Bluetooth connection Arduino 5v VCC or 3.3v (depending on the purchased device may be)
2. Bluetooth connection Arduino GND GND
3. RXD connected Bluetooth Arduino TX (Pin10)
4. TXD connected Bluetooth Arduino RX (Pin11)
// Arduino RX (Pin 11) connect to Bluethooth TX, Arduino TX (Pin 10) connect to Bluethooth RX

Arduino set
/ *
  btduino2 - Terminal Mode - by David Chung
* /
#include & lt; SoftwareSerial.h & gt;

SoftwareSerial myBT (11, 10);
const int ledPin = 13;
String inCode = "";
boolean endCode = false;

void setup () {
  Serial.begin (9600);
  myBT.begin (9600);
  pinMode (ledPin, OUTPUT);
  inCode.reserve (50);
}

void loop () {
  if (myBT.available ()) {
    char incomingChar = myBT.read ();
    if (incomingChar == ')') {
      endCode = true;
    } Else {
      inCode + = incomingChar;
    }
  }

  if (endCode) {
    int strEnd = inCode.indexOf (')');
    String myString = inCode.substring (0, strEnd);

    Serial.print ("Incoming:");
    Serial.println (myString);
    
    if (myString == "on") {
      digitalWrite (ledPin, HIGH);
      myBT.print ("LED On");
    }
    if (myString == "off") {
      digitalWrite (ledPin, LOW);
      myBT.print ("LED Off");
    }
    
    inCode = "";
    endCode = false;
  }
}


/ *
  btduino2 - GamePad Mode - by David Chung
* /
#include & lt; SoftwareSerial.h & gt;

SoftwareSerial myBT (11, 10);
const int ledPin = 13;
int incomingByte = 0;

void setup () {
  Serial.begin (9600);
  myBT.begin (9600);
  pinMode (ledPin, OUTPUT);
}

void loop () {
  if (myBT.available ()) {
    incomingByte = myBT.read ();
    Serial.println (char (incomingByte));
    if (incomingByte == 'L') {
      digitalWrite (ledPin, HIGH);
    }
    if (incomingByte == 'R') {
      digitalWrite (ledPin, LOW);
    }
  }
}

/ *
  Slider Mode
* /
#include & lt; SoftwareSerial.h & gt;

SoftwareSerial myBT (11, 10);
const int ledPin = 13;
String inCode = "";

boolean endCode = false;

void setup () {
  Serial.begin (9600);
  myBT.begin (9600);
  pinMode (ledPin, OUTPUT);
  inCode.reserve (30);
}

void loop () {
  if (myBT.available ()) {
    char incomingChar = myBT.read ();
    if (incomingChar == ')') {
      endCode = true;
    } Else {
      inCode + = incomingChar;
    }
  }

  if (endCode) {
    int comma1 = inCode.indexOf (',');
    int comma2 = inCode.indexOf (',', comma1 + 1);
    String Rs = inCode.substring (0, comma1);
    String Gs = inCode.substring (comma1 + 1, comma2);
    String Bs = inCode.substring (comma2 + 1);

    Serial.print ("inCode =");
    Serial.print (inCode);
    Serial.print ("R =");
    Serial.print (Rs);
    Serial.print ("G =");
    Serial.print (Gs);
    Serial.print ("B =");
    Serial.println (Bs);

    int R = Rs.toInt ();
    int G = Gs.toInt ();
    int B = Bs.toInt ();

    analogWrite (ledPin, R);
    
    inCode = "";
    endCode = false;
  }
}


/ *
  btduino2 - Orientation Mode - by David Chung
* /
#include & lt; SoftwareSerial.h & gt;

SoftwareSerial myBT (11, 10);
const int ledPin = 13;
String inCode = "";
boolean endCode = false;

void setup () {
  Serial.begin (9600);
  myBT.begin (9600);
  pinMode (ledPin, OUTPUT);
  inCode.reserve (30);
}

void loop () {
  if (myBT.available ()) {
    char incomingChar = myBT.read ();
    if (incomingChar == ')') {
      endCode = true;
    } Else {
      inCode + = incomingChar;
    }
  }

  if (endCode) {
    int comma1 = inCode.indexOf (',');
    int comma2 = inCode.indexOf (',', comma1 + 1);
    String As = inCode.substring (0, comma1);
    String Ps = inCode.substring (comma1 + 1, comma2);
    String Rs = inCode.substring (comma2 + 1);

    Serial.print ("inCode =");
    Serial.print (inCode);
    Serial.print ("Azimuth =");
    Serial.print (As);
    Serial.print ("Pitch =");
    Serial.print (Ps);
    Serial.print ("Roll =");
    Serial.println (Rs);

    int A = As.toInt ();
    int P = Ps.toInt ();
    int R = Rs.toInt ();

    inCode = "";
    endCode = false;
  }
}
修正Orientation Mode輸出值
Allows an application to write to external storage.
Allows applications to connect to paired bluetooth devices.
Allows applications to open network sockets.
Allows applications to access information about Wi-Fi networks.
Allows applications to discover and pair bluetooth devices.
Allows applications to access information about networks.
Allows an application to read from external storage.