Home  /  Tools Apps  / Arduino One Button ON/OFF on Windows Pc

Arduino One Button ON/OFF on Windows Pc

Developed By: Antonio Sergio Arduino

License: Free

Rating: 5,0/5 - 1 votes

Last Updated: December 27, 2023

Download on Windows PC

Compatible with Windows 10/11 PC & Laptop

App Details

Version 1.2
Size 1 MB
Release Date March 26, 14
Category Tools Apps

What's New:
Funcionamento do aplicativo apenas com dispositivos conectados via bluetooth; Observe que o led do módulo bluetooth(JY MCU) estava piscando e quando está... [see more]

Description from Developer:
Description:

Operation of the application only with connected devices via bluetooth;

Walkthrough:

1 - Re-assemble the proto board as electric scheme;
2 - Connect the bluetooth (... [read more]

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

App preview

About this app

On this page you can download Arduino One Button ON/OFF and install on Windows PC. Arduino One Button ON/OFF is free Tools app, developed by Antonio Sergio Arduino. Latest version of Arduino One Button ON/OFF is 1.2, was released on 2014-03-26 (updated on 2023-12-27). Estimated number of the downloads is more than 10. Overall rating of Arduino One Button ON/OFF 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 One Button ON/OFF on Windows?

Instruction on how to install Arduino One Button ON/OFF on Windows 10 Windows 11 PC & Laptop

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

Discussion

(*) is required

Download older versions

Other versions available: 1.2.

Download Arduino One Button ON/OFF 1.2 on Windows PC – 1 MB

Description:

Operation of the application only with connected devices via bluetooth;

Walkthrough:

1 - Re-assemble the proto board as electric scheme;
2 - Connect the bluetooth (JY MCU) and Arduino module, see the LED is flashing;
3 - In Smartphone turn Bluetooth on and enter the application and press the Connect button;
4 - Note that the bluetooth module LED (JY MCU) and was blinking when connected to flashing and stay straight on;
5 - The devices are conetctados via bluetooth - Direct LED is lit.

6 - At this time all application buttons work and send data to the bluetooth module and the Arduino.


The Arduino One Button ON / OFF application installed on Android Smartphone remotely controls the communication with Arduino via bluetooth.

Digital port configured as output: D7;
.
Controlling the drive (league and deslida) lamps, abatjours, fixtures, motors, pumps, solenoids, contactors, electric oven, appliances, etc..


  # Include / /
 SoftwareSerial mySerial (2, 3) / / 2 RX-, TX-3

 int D7 = 7;

 void setup ()
{
 mySerial.begin (9600);
 pinMode (D7, OUTPUT);
}

 void loop ()
{
 char character = mySerial.read ();
 
 if (character == 'A')
{
 digitalWrite (D7, HIGH);
}

if (character == 'B')
{
 digitalWrite (D7, LOW);
}

 delay (10);
}


If you prefer didactically, can use a plate or even a proto-board with an LED mounted to verify the drive's digital pin D7 used as output.

Note this project the digital pins D0 and D1 are connected to the RX and TX of the Arduino board and the digital pins D2 and D3 are connected to RX and TX bluetooth module, the digital pin D7 is connected to the LED and relay module or board with .

Use a smartphone with android to install this "apk.", In this example we used the Samsung Galaxy Tablet GT-P3100 Tab2 7.0 "with android version 4.0.

Install the Arduino One Button ON / OFF.apk application on Android Smartphone;
Now turn on the Bluetooth Android Smartphone and open the Arduino BT Control Toggle application;
Press "Connect" (if prompt for password, the default password is 1234);
Choose a bluetooth device you want to connect in the list (in this example the default name is LINVOR);

About configuring the Bluetooth module JY_MCU.
This module comes factory configured with:
Baud rate: 9600 bps;
Data bits: 8 bits;
Stop bits: 1, Parity: none;
Summary (9600 bps, 8N1);

How it works:
The Arduino One Button ON / OFF application installed on Android Smartphone with communicating with the bluetooth which is connected to the serial (mySerial) pin 2 and 3-RX-TX Arduino that receives data entities which in turn, interprets and makes the command relay (relay drive plate) that is connected to the digital port of the Arduino D7.

Warning: When working with this application keep the screen always on (do not use sleep mode or sleep) because you may lose control of the device being powered.

Note: To exit the application, always check before if the buttons are in the "OFF" mode - press the red button "disconnect" button and exit the application; Note that the bluetooth will flash indicating that the system is actually disconnected.

This is all you need to know to build your program:

Power Button ON - GREEN - send: Character "A";
Power OFF button - BLUE - send: Character 'B';

Free program code to Arduino BT Toggle Control.


  # Include / /
 SoftwareSerial mySerial (2, 3) / / 2 RX-, TX-3

 int D7 = 7;

 void setup ()
{
 mySerial.begin (9600);
 pinMode (D7, OUTPUT);
}

 void loop ()
{
 char character = mySerial.read ();
 
 if (character == 'A')
{
 digitalWrite (D7, HIGH);
}

if (character == 'B')
{
 digitalWrite (D7, LOW);
}

 delay (10);
}

http://sergioarduino.blogspot.com.br/p/arduino-one-button-on-off-descricao.html
http://sergioarduino.blogspot.com.br/
Funcionamento do aplicativo apenas com dispositivos conectados via bluetooth;

Observe que o led do módulo bluetooth(JY MCU) estava piscando e quando está conectado para de piscar e fica aceso direto;
Os dispositivos estão conetctados via bluetooth - led está aceso direto.


Gratis Programa código para Arduino BT Control Toggle.

http://sergioarduino.blogspot.com.br/p/arduino-one-button-on-off-descricao.html
http://sergioarduino.blogspot.com.br/