Bluetooth Arduino LED icon

Bluetooth Arduino LED

★★★★★
★★★★★
(3.00/5)

1.1Free9 years ago

Download Bluetooth Arduino LED APK latest version Free for Android

Version 1.1
Update
Size 1.48 MB (1,549,350 bytes)
Developer Net Andino
Category Apps, Education
Package Name appinventor.ai_ventasnetandino.BluetoothArduino
OS 1.5 and up

Bluetooth Arduino LED APPLICATION description

Communication Arduino Bluetooth Synchronization
Controlar Arduino mediante bluetooth, puede prender y apagar un Led

Datos que envia el APP

Boton Verde "Encender" = 'h'
Boton Rojo "Apagar" = 'l'

Boton Enlaces = Esta selecciona el Modulo Bluetooth a que se va a conectar y/o sincronizar

Cómo ejemplo Usaremos el 13 y GND; Prenda con Botorn Verde y Apague con Boton Rojo

//INICIO
int Led = 13;
int Status=0;

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

void loop(){
if(Serial.available()!=0){
Status= Serial.read();
}
if (Status =='h'){
digitalWrite(Led,HIGH);
}
if(Status=='l'){
digitalWrite(Led,LOW);
}
}
//FIN

Más Manuales en http://manual.netandino.net
↓ Read more
Bluetooth Arduino LED screen 1 Bluetooth Arduino LED screen 2