Home  /  Education Apps  / Bluetooth arduino Control Tank on Windows Pc

Bluetooth arduino Control Tank on Windows Pc

Developed By: ARDOBOT ROBOTICA S.A.S

License: Free

Rating: 5,0/5 - 8 votes

Last Updated: December 25, 2023

Download on Windows PC

Compatible with Windows 10/11 PC & Laptop

App Details

Version 1.0
Size 2.9 MB
Release Date September 10, 17
Category Education Apps

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

What's New:
Agregamos algo de publicidad para tener que tengas mas aplicaciones disponibles [see more]

Description from Developer:
With this application we can handle any Bluetooth remote control vehicle using the Arduino platform or similar. We can perform basic functions such as :, direction left, right, for... [read more]

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

App preview

About this app

On this page you can download Bluetooth arduino Control Tank and install on Windows PC. Bluetooth arduino Control Tank is free Education app, developed by ARDOBOT ROBOTICA S.A.S. Latest version of Bluetooth arduino Control Tank is 1.0, was released on 2017-09-10 (updated on 2023-12-25). Estimated number of the downloads is more than 50. Overall rating of Bluetooth arduino Control Tank is 5,0. Generally most of the top apps on Android Store have rating of 4+. This app had been rated by 8 users, 8 users had rated it 5*, 1 users had rated it 1*.

How to install Bluetooth arduino Control Tank on Windows?

Instruction on how to install Bluetooth arduino Control Tank on Windows 10 Windows 11 PC & Laptop

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

Discussion

(*) is required

Download older versions

Other versions available: 1.0.

Download Bluetooth arduino Control Tank 1.0 on Windows PC – 2.9 MB

With this application we can handle any Bluetooth remote control vehicle using the Arduino platform or similar. We can perform basic functions such as :, direction left, right, forward and back. Incorporate the possibility of acquiring the distance to your robotic platform of an object is found by adding the ultrasonic distance sensor HC-SR04

Find the connection on our website www.ardobot.com Seccion learn

// Variable declaration for the sensor HC-SR04
const int Trigger = 3; // digital Pin 2 for Trigger sensor
Echo const int = 2; Pin 3 // digital sensor for Echo

  long t; // timepo it takes to get the echo
  long d; // distance in centimeters

// Variable declaration for use L298N Motor Driver,


int EnableM1 = 6;
int Dir1M1 = 7;
int Dir2M1 = 8;

EnableM2 int = 11;
Dir1M2 int = 10;
int Dir2M2 = 9;

int counter = 0;

void setup () {
  Serial.begin (9600); // communication iniciailzamos

  // Pines for Sensor Module HC-SR04
  pinMode (Trigger, OUTPUT); // output pin
  pinMode (Echo, INPUT); // pin as input
  digitalWrite (Trigger, LOW); // initialize the pin with 0

  // Pines for driver Motor L298N
  pinMode (EnableM1, OUTPUT);
  pinMode (Dir1M1, OUTPUT);
  pinMode (Dir2M1, OUTPUT);
  pinMode (EnableM2, OUTPUT);
  pinMode (Dir1M2, OUTPUT);
  pinMode (Dir2M2, OUTPUT);
  
}

void loop ()
{

 control();
 
 count = count + 1; // Set a timer

   if (count = 700) {
  
    distance();
   }
 
 }

M1back void () {// Motor Left back

  digitalWrite (EnableM1, HIGH);
  digitalWrite (Dir1M1, HIGH);
  digitalWrite (Dir2M1, LOW);}

M1forward void () {// Motor Left forward

  digitalWrite (EnableM1, HIGH);
  digitalWrite (Dir1M1, LOW);
  digitalWrite (Dir2M1, HIGH);}

M2forward void () {// Motor Right forward

  digitalWrite (EnableM2, HIGH);
  digitalWrite (Dir1M2, LOW);
  digitalWrite (Dir2M2, HIGH);}

M2back void () {// Motor Right back

  digitalWrite (EnableM2, HIGH);
  digitalWrite (Dir1M2, HIGH);
  digitalWrite (Dir2M2, LOW);}

Brake void () {// brake motors

  digitalWrite (EnableM2, LOW);
  digitalWrite (Dir1M2, LOW);
  digitalWrite (Dir2M2, LOW);
  digitalWrite (EnableM1, LOW);
  digitalWrite (Dir1M1, LOW);
  digitalWrite (Dir2M1, LOW);
  }
Control void () {

 if (Serial.available ()> 0) {
    App = Serial.read int (); // we declare the data we received from the APP or Serial Port

    switch (App) {
      case 's':
        M1forward (); // only one motor FORWARD
        break;
      case 'w':
        M1back (); // ONLY AN ENGINE BACK
        break;
      case 'd':
        M2forward (); // only one motor FORWARD
        break;
      case 'a':
        M2back (); // ONLY AN ENGINE BACK
        break;
      case 'f':
        Brake();
        break;
      case 'q': // FORWARD COMBINING MORORES
        M1forward ();
        M2forward ();
        break;
      case 'b': // BACK COMBINING ENGINES
        M1back ();
        M2back ();
        break;
      case 't': // FULL TURN RIGHT
        M1forward ();
        M2back ();
        break;
      case 'and': // FULL TURN RIGHT
        M1back ();
        M2forward ();
        break;
      
    }
  }
}

void distance () {

  digitalWrite (Trigger, HIGH);
  delayMicroseconds (10); // We sent a pulse of 10us
  digitalWrite (Trigger, LOW);
  
  t = pulseIn (Echo, HIGH); // get the pulse width
  d = t / 59; // time to climb a distance in cm

  Serial.println (d); // We sent serially the value of the distance
  // delay (100); // We pause of 100ms
    
}
Agregamos algo de publicidad para tener que tengas mas aplicaciones disponibles
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 access information about networks.
Allows using PowerManager WakeLocks to keep processor from sleeping or screen from dimming.