Home  /  Education Apps  / Led rgb jdcr on Windows Pc

Led rgb jdcr on Windows Pc

Developed By: JDCR

License: Free

Rating: 5,0/5 - 1 votes

Last Updated: April 19, 2024

Download on Windows PC

Compatible with Windows 10/11 PC & Laptop

App Details

Version 2.0
Size 3.2 MB
Release Date August 29, 20
Category Education Apps

App Permissions:
Allows applications to open network sockets. [see more (5)]

What's New:
----------------------------------------------Versión Inicial 2.0-----------------------------------------------Conexión vía bluetooth-Estado de bluetooth-... [see more]

Description from Developer:
Rgb Led Control allows you to control the different colors that a common anode and common cathode rgb led produces with just one click.


Step 1: Pair bluetooth module with the cel... [read more]

App preview ([see all 6 screenshots])

App preview

About this app

On this page you can download Led rgb jdcr and install on Windows PC. Led rgb jdcr is free Education app, developed by JDCR. Latest version of Led rgb jdcr is 2.0, was released on 2020-08-29 (updated on 2024-04-19). Estimated number of the downloads is more than 10. Overall rating of Led rgb jdcr is 5,0. Generally most of the top apps on Android Store have rating of 4+. This app had been rated by 1 users, 1 users had rated it 5*, 1 users had rated it 1*.

How to install Led rgb jdcr on Windows?

Instruction on how to install Led rgb jdcr on Windows 10 Windows 11 PC & Laptop

In this post, I am going to show you how to install Led rgb jdcr on Windows PC by using Android App Player such as BlueStacks, LDPlayer, Nox, KOPlayer, ...

Before you start, you will need to download the APK/XAPK installer file, you can find download button on top of this page. Save it to easy-to-find location.

[Note] You can also download older versions of this app on bottom of this page.

Below you will find a detailed step-by-step guide, but I want to give you a fast overview of how it works. All you need is an emulator that will emulate an Android device on your Windows PC and then you can install applications and use it - you see you're playing it on Android, but this runs not on a smartphone or tablet, it runs on a PC.

If this doesn't work on your PC, or you cannot install, comment here and we will help you!

Step By Step Guide To Install Led rgb jdcr using BlueStacks

  1. Download and Install BlueStacks at: https://www.bluestacks.com. The installation procedure is quite simple. After successful installation, open the Bluestacks emulator. It may take some time to load the Bluestacks app initially. Once it is opened, you should be able to see the Home screen of Bluestacks.
  2. Open the APK/XAPK file: Double-click the APK/XAPK file to launch BlueStacks and install the application. If your APK/XAPK file doesn't automatically open BlueStacks, right-click on it and select Open with... Browse to the BlueStacks. You can also drag-and-drop the APK/XAPK file onto the BlueStacks home screen
  3. Once installed, click "Led rgb jdcr" icon on the home screen to start using, it'll work like a charm :D

[Note 1] For better performance and compatibility, choose BlueStacks 5 Nougat 64-bit read more

[Note 2] about Bluetooth: At the moment, support for Bluetooth is not available on BlueStacks. Hence, apps that require control of Bluetooth may not work on BlueStacks.

How to install Led rgb jdcr on Windows PC using NoxPlayer

  1. Download & Install NoxPlayer at: https://www.bignox.com. The installation is easy to carry out.
  2. Drag the APK/XAPK file to the NoxPlayer interface and drop it to install
  3. The installation process will take place quickly. After successful installation, you can find "Led rgb jdcr" on the home screen of NoxPlayer, just click to open it.

Discussion

(*) is required

Download older versions

Other versions available: 2.0.

Download Led rgb jdcr 2.0 on Windows PC – 3.2 MB

Rgb Led Control allows you to control the different colors that a common anode and common cathode rgb led produces with just one click.


Step 1: Pair bluetooth module with the cell phone
Step 2: Choose the bluetooth corresponding to your module
Step 3: Enjoy the app :)

The application has 8 buttons which send a digit type character for each color:

Red = ‘1’ turn on Red
Green = ’2’ turn on Green
Yellow = ’3’ turn on Yellow
Blue = ’4’ turn on Blue
Magenta = ’5’ turn on Magenta
Cían = ’6’ turn on Cían
White = ’7’ turn on White
RGB LED = ’8’ turn off any color


Arduino code used for the proper functioning of the application:

int Red = 3;
int Green = 5;
int Blue = 6;

char received; // save the value received by bluetooth

void off () {
  digitalWrite (Red, HIGH);
  digitalWrite (Green, HIGH);
  digitalWrite (Blue, HIGH);
}

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

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

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

void setup () {
  Serial.begin (38400); // The baud must be configured in bluetooth as in the sketch
  pinMode (Red, OUTPUT);
  pinMode (Green, OUTPUT);
  pinMode (Blue, OUTPUT);
}

void loop () {

  if (Serial.available ()> 0) {// check if there is any data in the buffer
    received = Serial.read (); // delete the first data and send it to the variable
    Serial.write (received);
  } // end if

  switch (received) {
    case '1':
      //-------RED
      onrojo ();
      offverde ();
      offazul ();
      break;
    case '2':
      //-------GREEN
      offrojo ();
      onverde ();
      offazul ();
      break;
    case '3':
      //-------YELLOW
      onrojo ();
      onverde ();
      offazul ();
      break;
    case '4':
      //-------BLUE
      offrojo ();
      offverde ();
      onazul ();
      break;
    case '5':
      //-------MAGENTA
      onrojo ();
      offverde ();
      onazul ();
      break;
    case '6':
      // ------- CIAN
      offrojo ();
      onverde ();
      onazul ();
      break;
    case '7':
      //-------WHITE
      onrojo ();
      onverde ();
      onazul ();
      break;
      default:
      off();
  } // end switch
} // END OF LOOP





Having trouble downloading or installing the application? Write us at: cruzramosjosedaniel@gmail.com

Do you still need help? Give us more details about the problem at: cruzramosjosedaniel@gmail.com

Code used and connection diagram at: cruzramosjosedaniel@gmail.com
----------------------------------------------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...
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.