Bluetooth 4.0 BLE for arduino 2.3.1



Publisher Description



Note: Your device must be compatible to bluetooth 4.0, must be android version 4.3 or higher.
Control an arduino / genuino sending data as 123, abc. This app have predetermined ON/OFF, 6
Control 1 sends variable (1) ON, (0)OFF;
control 2 (3)ON, (2)OFF;
control 3 (5)ON, (4)OFF;
control 4 (7)ON, (6)OFF;
control5 (9)ON, (8)OFF.
To custom labels and String send values check the App "Control for arduino bluetooth 4.0 "

-you can send your own variables. Send a combination to turn ON /OFF 2 or more pins at the same time, for example write 159 and click "send" to Turn ON the pins assigned to those variable.
- Compatible to bluetooth4.0 hm-10 module
- You can use a simple sketch.
Be sure the bluetooth in your device is on, then click on "Select bluetooth" .
Next time you open the app if it is available it will connect to the last ble module you selected

SKETCH 1 USING SOFTWARE.SERIAL LIBRARY
/* This sketch simplified to accept BLE 4.0 */

#include SoftwareSerial.h

int Tx = 3; // BLE TX Connect to arduino pin 3. For arduino mega check the PIN compatibles for tx,rx
int Rx = 2; // BLE RX Connect to arduino pin 2
SoftwareSerial mybluetooth(Tx,Rx);

void setup() {

// to indicate a pin is output
//you can assign which pins you want to use
pinMode(6, OUTPUT);
pinMode(7, OUTPUT);
pinMode(8, OUTPUT);
pinMode(9, OUTPUT);
pinMode(13, OUTPUT);

delay(1000);
mybluetooth.begin(9600); // Start bluetooth serial at 9600 or set your own baud rate
}

void loop() {
char data = mybluetooth.read();

if (data == '1') digitalWrite(6, HIGH);
if (data == '0') digitalWrite(6, LOW);

if (data == '3') digitalWrite(7, HIGH);
if (data == '2') digitalWrite(7, LOW);

if (data == '5') digitalWrite(8, HIGH);
if (data == '4') digitalWrite(8, LOW);

if (data == '7') digitalWrite(9, HIGH);
if (data == '6') digitalWrite(9, LOW);

if (data == '9') digitalWrite(13, HIGH);
if (data == '8') digitalWrite(13, LOW);
}
SKETCH 2 USING ARDUINO TX, RX PINS

to use the tx and rx pins built in because some arduino do not support software.serial */
// Connect BLE TX to Arduino RX
// Connect BLE RX to Arduino TX, it works in arduino uno, for other arduino model test this connection or
// just connect RX to RX and TX to TX.


void setup() {

// to indicate a pin is output
//YOU CAN ASSIGN WHICH PINS YOU WANT TO USE
pinMode(6, OUTPUT);
pinMode(7, OUTPUT);
pinMode(8, OUTPUT);
pinMode(9, OUTPUT);
pinMode(13, OUTPUT);


Serial.begin(9600); // Start bluetooth serial at 9600, MAKE sure your bluetooth is set to 9600 baud
// or change this value to match your bluetooth baud rate
}

void loop() {

char data = Serial.read();

if (data == '1') digitalWrite(6, HIGH);
if (data == '0') digitalWrite(6, LOW);


if (data == '3') digitalWrite(7, HIGH);
if (data == '2') digitalWrite(7, LOW);

if (data == '5') digitalWrite(8, HIGH);
if (data == '4') digitalWrite(8, LOW);

if (data == '7') digitalWrite(9, HIGH);
if (data == '6') digitalWrite(9, LOW);

if (data == '9') digitalWrite(13, HIGH);
if (data == '8') digitalWrite(13, LOW);
}


About Bluetooth 4.0 BLE for arduino

Bluetooth 4.0 BLE for arduino is a free app for Android published in the System Maintenance list of apps, part of System Utilities.

The company that develops Bluetooth 4.0 BLE for arduino is esdras tc. The latest version released by its developer is 2.3.1.

To install Bluetooth 4.0 BLE for arduino on your Android device, just click the green Continue To App button above to start the installation process. The app is listed on our website since 2017-07-10 and was downloaded 6 times. We have already checked if the download link is safe, however for your own protection we recommend that you scan the downloaded app with your antivirus. Your antivirus may detect the Bluetooth 4.0 BLE for arduino as malware as malware if the download link to appinventor.ai_Esdrastlc.BLEcontrol is broken.

How to install Bluetooth 4.0 BLE for arduino on your Android device:

  • Click on the Continue To App button on our website. This will redirect you to Google Play.
  • Once the Bluetooth 4.0 BLE for arduino is shown in the Google Play listing of your Android device, you can start its download and installation. Tap on the Install button located below the search bar and to the right of the app icon.
  • A pop-up window with the permissions required by Bluetooth 4.0 BLE for arduino will be shown. Click on Accept to continue the process.
  • Bluetooth 4.0 BLE for arduino will be downloaded onto your device, displaying a progress. Once the download completes, the installation will start and you'll get a notification after the installation is finished.



RELATED PROGRAMS
Our Recommendations






BarCode2D-PNG


Click stars to rate this APP!

Users Rating:  
  0.0/5     0
Downloads: 6
Updated At: 2024-04-19
Publisher: esdras tc
Operating System: Android
License Type: Free