Bluetooth Arduino LEDs 1 Icon

Bluetooth Arduino LEDs

Net Andino Education
4
2 Ratings
500+
Downloads
1
version
Aug 09, 2015
release date
1.4 MB
file size
Free
Download

About Bluetooth Arduino LEDs Android App

Controlar Arduino mediante bluetooth, puede prender y apagar un Led

Datos que envia el APP
Boton Rojo = 'r'
Boton Verde = g'
Boton Azul = 'b'


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

Cómo ejemplo Usaremos los temrnales 5, 6 y 7 u otros según criterio; Logo Bluetooth para conectar


//INICIO

int LedR = 5; // Boton Rojo
int LedG = 6; // Boton Verde
int LedB = 7; // Boton Azul

int vel = 255; // Intencidad de Colores

int estado = 'a'; // inicia detenido o Apagado

int Status=0;

void setup() {

Serial.begin(9600); // inicia el puerto serial para comunicacion con el Bluetooth

pinMode(LedR, OUTPUT);

pinMode(LedG, OUTPUT);

pinMode(LedB, OUTPUT);

}

void loop(){

if(Serial.available()!=0){

Status= Serial.read();

}

if (Status =='r'){

digitalWrite(LedR,HIGH);

digitalWrite(LedG,LOW);

digitalWrite(LedB,LOW);

}

if (Status =='g'){

digitalWrite(LedR,LOW);

digitalWrite(LedG,HIGH);

digitalWrite(LedB,LOW);

}

if (Status =='b'){

digitalWrite(LedR,LOW);

digitalWrite(LedG,LOW);

digitalWrite(LedB,HIGH);

}

}

//FIN


Más Manuales en http://manual.netandino.net

Other Information:

Requires Android:
Android 1.5+
Other Sources:

Download

This version of Bluetooth Arduino LEDs Android App comes with one universal variant which will work on all the Android devices.

Variant
1
(Aug 09, 2015)
Architecture
universal
Minimum OS
Android 1.5+
Screen DPI
nodpi (all screens)

All Versions

If you are looking to download other versions of Bluetooth Arduino LEDs Android App, We have 1 version in our database. Please select one of them below to download.

Loading..