Home  /  Communication Apps  / ArduTooth on Windows Pc

ArduTooth on Windows Pc

Developed By: Frederik Hauke

License: Free

Rating: 5,0/5 - 1 votes

Last Updated: December 31, 2023

Download on Windows PC

Compatible with Windows 10/11 PC & Laptop

App Details

Version 1.0
Size 1 MB
Release Date March 27, 16
Category Communication Apps

Description from Developer:
The easiest way to visualize Arduino Sensor-Data directly on your Android-Device in REALTIME! The App is able to display the values of up to 6 Sensors simultaneously.Only required... [read more]

App preview ([see all 3 screenshots])

App preview

About this app

On this page you can download ArduTooth and install on Windows PC. ArduTooth is free Communication app, developed by Frederik Hauke. Latest version of ArduTooth is 1.0, was released on 2016-03-27 (updated on 2023-12-31). Estimated number of the downloads is more than 1,000. Overall rating of ArduTooth 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 ArduTooth on Windows?

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

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

Discussion

(*) is required

Download older versions

Other versions available: 1.0.

Download ArduTooth 1.0 on Windows PC – 1 MB

The easiest way to visualize Arduino Sensor-Data directly on your Android-Device in REALTIME! The App is able to display the values of up to 6 Sensors simultaneously.

Only required is to load some Code to your Arduino-Board, wire a Bluetooth-Module (like the HC-05) to the Arduino and couple Android-Device and Bluetooth-Module in the System-Preferences.

The App will establish a wireless Bluetooth-Serial-Connection between Arduino and Smartphone.

Requirements:
-Arduino
-Bluetooth-Modul (HC-05, HC-06, ...)

The Bluetooth-Module has to be wired as shown at the labeling of the Module (Caution: HC-05 TX has to be wired to Arduino Pin 10 (RX), HC-05 RX has to be wired to Arduino Pin 11(TX)).
The following Code needs to be uploaded to the Arduino-Board:

/*Developer: Frederik Hauke

Important Notices:
This Arduino-Code is written for Visualizating measurement data from a microcontroller via Bluetooth.
Before starting this application, the Bluetooth-Modul (HC-05) has to be coupled to the Smartphone.
In the special case of the HC-05 the default PinCode for initiating the Coupling-Process is "1234" or "0000".

Wiring:
GND of HC-05 to GND Arduino, VCC of HC-05 to VCC Arduino,
TX HC-05 to Arduino Pin 10 (RX)
RX HC-05 to Arduino Pin 11 (TX)
*/

#include
SoftwareSerial BTserial(10, 11); // RX | TX

int sensorPin = A0;
int sensorValue = 0;

void setup() {

BTserial.begin(9600);
}

void loop() {

sensorValue = analogRead(sensorPin);

//IMPORTANT: The complete String has to be of the Form: 1234,1234,1234,1234;
//(every Value has to be seperated through a comma (',') and the message has to
//end with a semikolon (';')) )

BTserial.print("1234");
BTserial.print(",");
BTserial.print("1234.0");
BTserial.print(",");
BTserial.print("1234 hPa");
BTserial.print(",");
BTserial.print("500 ml/s");
BTserial.print(",");
BTserial.print(sensorValue);
BTserial.print(";");

//message to the receiving device

delay(20);
}