About Matriz LEDs 1.1
Controls the LED array from the mobile with bluetooth.
/* CÓDIGO PARA APP MATRIZ DE LEDS
La aplicación manda una letra 'a'(apagado) o 'e'(encendido) y dos números según la fila y la columna.
Desarrollado por Jose Pujol, Alberto Pumar y Carlos Pumar
Marzo de 2015
*/
#include
Matriz matriz(6, 9, 5);
int incomingByte; //Variable donde se almacena el primer Byte (a,e)
int unidad=0; // Variable donde se almacena el segundo Byte (fila)
int decena=0; //Variable donde se almacena el tercer Byte (columna)
void setup(){
Serial.begin(9600);
}
void loop(){
while (incomingByte < 1) { //Si recibe datos,
incomingByte = Serial.read(); //Acumula el último byte en incomingByte
matriz.printMatrix(); //Imprime los leds acumulados
}
while (decena < 1) { //Si recibe datos,
decena=Serial.read(); //Acumula el último byte en decena
}
while (unidad < 1) {
unidad=Serial.read(); //Acumula el último byte en unidades
}
if(incomingByte == 'e'){
matriz.newPixel(decena-48, unidad-48); //Acumula el led resultante
}
if(incomingByte == 'a'){
matriz.deletePixel(decena-48, unidad-48); //Borra el led resultante
}
//las variables se igualan a 0
incomingByte=0;
unidad=0;
decena=0;
}
What's new in the latest 1.0
Matriz LEDs 1.1 APK Information
Old Versions of Matriz LEDs 1.1
Matriz LEDs 1.1 1.0

Super Fast and Safe Downloading via APKPure App
One-click to install XAPK/APK files on Android!