Ks0229 keyestudio EASY plug Digital Green LED Module

From Keyestudio Wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
Keyestudio EASY plug Digital Green LED Module


Introduction

The LED light module has a shiny color, ideal for emitting green light. It can be easily connected to Arduino IO/Sensor shield.
This module needs to be used together with EASY plug control board.You can also choose other LED modules to emit different light color like blue, red, yellow and white.

Special Note:
The sensor/module is equipped with the RJ11 6P6C interface, compatible with our keyestudio EASY plug Control Board with RJ11 6P6C interface.
If you have the control board of other brands, it is also equipped with the RJ11 6P6C interface but has different internal line sequence, can’t be used compatibly with our sensor/module.


Specification

  • Interface: Easy plug
  • Sensor type: Digital
  • PH2.54 socket
  • Easy to use
  • Useful for light projects


Connect It Up

Connect the EASY Plug LED module to control board using an RJ11 cable. Then connect the control board to your PC with a USB cable.
thumb

Sample Code

Copy and paste below code to Arduino IDE and upload.

int led =6;
void setup()
{
pinMode(led, OUTPUT);//Set Pin6 as output
}
void loop()
{
digitalWrite(led, HIGH);//Turn led on
delay(2000);
digitalWrite(led, LOW);//Turn led off
delay(2000);
}


What You Should See

The LED will flash on for two seconds, then off for two seconds. If it doesn’t, make sure you have assembled the circuit correctly and verified and uploaded the code to your board.
thumb