Ks0010 keyestudio 3W LED Module: Difference between revisions
Jump to navigation
Jump to search
Keyestudio (talk | contribs) |
Keyestudio (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
<br> | |||
==Introduction== | ==Introduction== | ||
This LED module is of high brightness because the lamp beads it carries is 3W. We can apply this module to Arduino projects. <br> | |||
For example, intelligent robots can use this module for illumination purpose.<br> | |||
Please note that the LED light can' | Please note that the LED light can't be exposed directly to human eyes for safety concerns. | ||
<br>[[File:KS0010 (4).jpg|500px|frameless|thumb]]<br> | <br>[[File:KS0010 (4).jpg|500px|frameless|thumb]]<br> | ||
<br> | |||
==Specification== | ==Specification== | ||
*Color temperature: 6000~7000K | * Color temperature: 6000~7000K | ||
*Luminous flux: 180~210lm | * Luminous flux: 180~210lm | ||
*Current: 700~750mA | * Current: 700~750mA | ||
*Power: 3W | * IO Type: Digital | ||
*Light angle: 140 degree | * Supply Voltage: 3.3V to 5V | ||
*Working temperature: -50~ | * Power: 3W | ||
*Storage temperature: -50~ | * Light angle: 140 degree | ||
*High power LED module, controlled by IO port microcontroller | * Working temperature: -50~80℃ | ||
*Great for Robot and search & rescue platform application | * Storage temperature: -50~100℃ | ||
* High power LED module, controlled by IO port microcontroller | |||
* Great for Robot and search & rescue platform application | |||
<br> | |||
==Connection Diagram == | ==Connection Diagram == | ||
<br>[[File:Connection Diagram1.png|500px|frameless|thumb]]<br> | <br>[[File:Connection Diagram1.png|500px|frameless|thumb]]<br> | ||
<br> | |||
==Sample Code == | ==Sample Code == | ||
<pre> | <pre> | ||
// the setup function runs once when you press reset or power the board | // the setup function runs once when you press reset or power the board | ||
Line 40: | Line 39: | ||
digitalWrite(13, LOW); // turn the LED off by making the voltage LOW | digitalWrite(13, LOW); // turn the LED off by making the voltage LOW | ||
delay(1000); // wait for a second | delay(1000); // wait for a second | ||
}</pre> | } | ||
</pre> | |||
<br> | |||
==Result== | |||
Done wiring and powered up,upload well the code, both D13 led and the led on the module blink for one second then off, circularly. | |||
<br>[[File:KS0349 3-2.png|800px|frameless|thumb]]<br> | |||
<br> | |||
==Resources == | ==Resources == | ||
'''Video'''<br> | |||
http://video.keyestudio.com/ks0010/ | |||
''' | '''Datasheet and Code''' <br> | ||
https://drive.google.com/open?id=1L44RIUHaOBi1ZB9AkHCzcooiJcuj-Pns | |||
<br> | |||
==Get One Now== | |||
[https://www.keyestudio.com/free-shipping-keyestudio-3w-l-ed-module-for-arduino-uno-r3-mega-2560-r3-p0423-p0423.html '''Official Website'''] | |||
[https://www.ebay.com/itm/Keyestudio-3W-LED-Module-for-Arduino-UNO-R3-MEGA-2560-R3-/132514933352 '''ebay''' ] | |||
https:// | |||
''' | |||
*[https://www.aliexpress.com/store/product/Free-shipping-Keyes-3w-led-module/1452162_2055683676.html?spm=2114.12010615.8148356.1.414b4344BR1hFu '''On Aliexpress'''] | |||
[[Category: Sensor]] | [[Category: Sensor]] |
Revision as of 10:39, 12 April 2019
Introduction
This LED module is of high brightness because the lamp beads it carries is 3W. We can apply this module to Arduino projects.
For example, intelligent robots can use this module for illumination purpose.
Please note that the LED light can't be exposed directly to human eyes for safety concerns.
Specification
- Color temperature: 6000~7000K
- Luminous flux: 180~210lm
- Current: 700~750mA
- IO Type: Digital
- Supply Voltage: 3.3V to 5V
- Power: 3W
- Light angle: 140 degree
- Working temperature: -50~80℃
- Storage temperature: -50~100℃
- High power LED module, controlled by IO port microcontroller
- Great for Robot and search & rescue platform application
Connection Diagram
Sample Code
// the setup function runs once when you press reset or power the board void setup() { // initialize digital pin 13 as an output. pinMode(13, OUTPUT); } // the loop function runs over and over again forever void loop() { digitalWrite(13, HIGH); // turn the LED on (HIGH is the voltage level) delay(1000); // wait for a second digitalWrite(13, LOW); // turn the LED off by making the voltage LOW delay(1000); // wait for a second }
Result
Done wiring and powered up,upload well the code, both D13 led and the led on the module blink for one second then off, circularly.
Resources
Video
http://video.keyestudio.com/ks0010/
Datasheet and Code
https://drive.google.com/open?id=1L44RIUHaOBi1ZB9AkHCzcooiJcuj-Pns