Control Exlusivo Para uso de LEDs
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
This version of Bluetooth Arduino LED Android App comes with one universal variant which will work on all the Android devices.
If you are looking to download other versions of Bluetooth Arduino LED Android App, We have 1 version in our database. Please select one of them below to download.