Led rgb jdcr Application icon

Led rgb jdcr 2.0

3.2 MB / 0+ Downloads / Rating 5.0 - 1 reviews


See previous versions

Led rgb jdcr, developed and published by JDCR, has released its latest version, 2.0, on 2020-08-29. This app falls under the Education category on the Google Play Store and has achieved over 10 installs. It currently holds an overall rating of 5.0, based on 1 reviews.

Led rgb jdcr APK available on this page is compatible with all Android devices that meet the required specifications (Android 4.0+). It can also be installed on PC and Mac using an Android emulator such as Bluestacks, LDPlayer, and others.

Read More

App Screenshot

App Screenshot

App Details

Package name: com.appybuilder.helpdisponible.Luces

Updated: 4 years ago

Developer Name: JDCR

Category: Education

New features: Show more

App Permissions: Show more

Installation Instructions

This article outlines two straightforward methods for installing Led rgb jdcr on PC Windows and Mac.

Using BlueStacks

  1. Download the APK/XAPK file from this page.
  2. Install BlueStacks by visiting http://bluestacks.com.
  3. Open the APK/XAPK file by double-clicking it. This action will launch BlueStacks and begin the application's installation. If the APK file does not automatically open with BlueStacks, right-click on it and select 'Open with...', then navigate to BlueStacks. Alternatively, you can drag-and-drop the APK file onto the BlueStacks home screen.
  4. Wait a few seconds for the installation to complete. Once done, the installed app will appear on the BlueStacks home screen. Click its icon to start using the application.

Using LDPlayer

  1. Download and install LDPlayer from https://www.ldplayer.net.
  2. Drag the APK/XAPK file directly into LDPlayer.

If you have any questions, please don't hesitate to contact us.

Previous Versions

Led rgb jdcr 2.0
2020-08-29 / 3.2 MB / Android 4.0+

About this app

Control Led rgb permite controlar los diferentes colores que produce un led rgb de ánodo común y cátodo común con un solo clic.


Paso 1: Vincular modulo bluetooth con el celular
Paso 2: Elegir el bluetooth correspondiente a tu modulo
Paso 3:Disfruta de la app :)

La aplicación cuenta con 8 botones los cuales envía un carácter de tipo dígito por cada color:

Rojo = ‘1’ encender Rojo
Verde =’2’ encender Verde
Amarillo =’3’ encender Amarillo
Azul =’4’ encender Azul
Magenta =’5’ encender Magenta
Cían =’6’ encender Cían
Blanco=’7’ encender Blanco
LED RGB =’8’ apagar cualquier color


Código arduino usado para el buen funcionamiento de la aplicación:

int Rojo = 3;
int Verde = 5;
int Azul = 6;

char recibido;//guarda el valor recibido por bluetooth

void apagado() {
digitalWrite(Rojo, HIGH);
digitalWrite(Verde, HIGH);
digitalWrite(Azul, HIGH);
}

void onrojo() {digitalWrite(Rojo, LOW);}
void offrojo(){digitalWrite(Rojo, HIGH);}

void onverde() {digitalWrite(Verde, LOW);}
void offverde(){digitalWrite(Verde, HIGH);}

void onazul() {digitalWrite(Azul, LOW);}
void offazul(){digitalWrite(Azul, HIGH);}

void setup() {
Serial.begin(38400);//Los baudios deben estar configurados en bluetooth igual que en el sketch
pinMode(Rojo, OUTPUT);
pinMode(Verde, OUTPUT);
pinMode(Azul, OUTPUT);
}

void loop() {

if (Serial.available() > 0) {//verifica si hay un dato en el bufer
recibido = Serial.read();//elimina el primer dato y lo envía a la variable
Serial.write(recibido);
}//fin if

switch (recibido) {
case '1':
//-------ROJO
onrojo();
offverde();
offazul();
break;
case '2':
//-------VERDE
offrojo();
onverde();
offazul();
break;
case '3':
//-------AMARILLO
onrojo();
onverde();
offazul();
break;
case '4':
//-------AZUL
offrojo();
offverde();
onazul();
break;
case '5':
//-------MAGENTA
onrojo();
offverde();
onazul();
break;
case '6':
//-------CIAN
offrojo();
onverde();
onazul();
break;
case '7':
//-------BLANCO
onrojo();
onverde();
onazul();
break;
default:
apagado();
}//fin switch
}//FIN DE LOOP





¿Tienes problemas para descargar o instalar la aplicación? Escríbenos en: cruzramosjosedaniel@gmail.com

¿Sigues necesitando ayuda? Proporciónanos más detalles sobre el problema en: cruzramosjosedaniel@gmail.com

Código usado y diagrama de conexión en: cruzramosjosedaniel@gmail.com

New features

----------------------------------------------Versión Inicial 2.0----------------------------------------------
-Conexión vía bluetooth
-Estado de bluetooth
-Control de colores
-Apagado de colores
-Identificación de colores por etiqueta
-Otros...

App Permissions

Allows applications to open network sockets.
Allows applications to discover and pair bluetooth devices.
Allows applications to access information about networks.
Allows applications to access information about Wi-Fi networks.
Allows applications to connect to paired bluetooth devices.