Matriz LEDs 1.1

Matriz LEDs 1.1

  • 2.3 MB

    File Size

  • Android 1.5+

    Android OS

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;

}

Show More

What's new in the latest 1.0

Last updated on Jan 11, 2017
Minor bug fixes and improvements. Install or update to the newest version to check it out!
Show More

Videos and Screenshots

  • Matriz LEDs 1.1 poster
  • Matriz LEDs 1.1 screenshot 1
  • Matriz LEDs 1.1 screenshot 2
  • Matriz LEDs 1.1 screenshot 3
  • Matriz LEDs 1.1 screenshot 4
  • Matriz LEDs 1.1 screenshot 5

Old Versions of Matriz LEDs 1.1

Matriz LEDs 1.1 1.0

2.3 MBJan 11, 2017
Download
APKPure icon

Super Fast and Safe Downloading via APKPure App

One-click to install XAPK/APK files on Android!

Download APKPure
thank icon
We use cookies and other technologies on this website to enhance your user experience.
By clicking any link on this page you are giving your consent to our Privacy Policy and Cookies Policy.
Learn More about Policies