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
免費玩Bluetooth Arduino LED APP玩免費
免費玩Bluetooth Arduino LED App
熱門國家 | 系統支援 | 版本 | 費用 | APP評分 | 上架日期 | 更新日期 |
---|---|---|---|---|---|---|
未知 | Android Google Play | 1.1 App下載 | 免費 | 1970-01-01 | 2015-04-23 |