KS0016 Keyestudio White LED Module: Difference between revisions

From Keyestudio Wiki
Jump to navigation Jump to search
(Created page with " <br> == Introduction == This is a white LED module. The main function is to control a plugin LED on and off. When connecting to ARDUINO, after programming, it will emit white...")
 
No edit summary
Line 2: Line 2:
<br>
<br>
== Introduction ==
== Introduction ==
This is a white LED module. The main function is to control a plugin LED on and off. When connecting to ARDUINO, after programming, it will emit white light color.
This is a white LED module. The main function is to control a plugin LED on and off. When connecting to ARDUINO, after programming, it will emit white light color.<br>
The pin pitch of 3Pin is 2.54mm.
The pin pitch of 3Pin is 2.54mm. This LED module has 3 Pins; - pin is connected to ground, + pin is connected to VCC(3.3-5V), S pin is for signal control; you can set the High or Low level to control the LED on and off. <br>
This LED module has 3 Pins; - pin is connected to ground, + pin is connected to VCC(3.3-5V), S pin is for signal control; you can set the High or Low level to control the LED on and off.  
You can combine with other sensors to do various interactive experiments.  
You can combine with other sensors to do various interactive experiments.  
You can also choose other LED modules to emit different light color like blue, green, yellow and red.
You can also choose other LED modules to emit different light color like blue, green, yellow and red.<br>
 


<br>
== Features ==
== Features ==
Control interface: Digital
* Control interface: Digital
Working voltage: DC 3.3-5V
* Working voltage: DC 3.3-5V
Pin pitch: 2.54mm
* Pin pitch: 2.54mm
LED color: white  
* LED color: white  
Easy to use
* Easy to use
Useful for light projects
* Useful for light projects


Technical Details
<br>
Dimensions: 34mm*20mm*11.5mm
== Connect It Up ==
Weight: 2.7g
 
Connect It Up
Connect the LED module to control board using three jumper wires. Then connect the control board to your PC with a USB cable.
Connect the LED module to control board using three jumper wires. Then connect the control board to your PC with a USB cable.






Upload the Code
== Upload the Code ==
Copy and paste below code to Arduino IDE and upload.     
Copy and paste below code to Arduino IDE and upload.     
////////////////////////////////////////////////////////////////////////////////////////
<pre>
int led = 7; 
int led = 7; 
void setup()
void setup()
Line 40: Line 36:
          delay(1000);
          delay(1000);
}
}
////////////////////////////////////////////////////////////////////////////////////////
</pre>
 


What You Should See
<br>
== What You Should See ==
The LED will flash on for one second, then off for one second, repeatedly and alternately.  
The LED will flash on for one second, then off for one second, repeatedly and alternately.  
If it doesn’t, make sure you have assembled the circuit correctly and verified and uploaded the code to your board.
If it doesn’t, make sure you have assembled the circuit correctly and verified and uploaded the code to your board.

Revision as of 13:49, 12 April 2019


Introduction

This is a white LED module. The main function is to control a plugin LED on and off. When connecting to ARDUINO, after programming, it will emit white light color.
The pin pitch of 3Pin is 2.54mm. This LED module has 3 Pins; - pin is connected to ground, + pin is connected to VCC(3.3-5V), S pin is for signal control; you can set the High or Low level to control the LED on and off.
You can combine with other sensors to do various interactive experiments. You can also choose other LED modules to emit different light color like blue, green, yellow and red.


Features

  • Control interface: Digital
  • Working voltage: DC 3.3-5V
  • Pin pitch: 2.54mm
  • LED color: white
  • Easy to use
  • Useful for light projects


Connect It Up

Connect the LED module to control board using three jumper wires. Then connect the control board to your PC with a USB cable.


Upload the Code

Copy and paste below code to Arduino IDE and upload.

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


What You Should See

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