Difference between revisions of "High Power Led Module"
Qian.zhang (talk | contribs) (→Introduction) |
|||
| (7 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
| − | + | ==Introduction== | |
| + | This is a high power LED module. It has five bright LEDs. | ||
| + | [[File:High power LED module.jpg]] | ||
| + | |||
| + | == Specification == | ||
| + | |||
| + | The high power led unit is 3528. | ||
| + | |||
| + | *Working Voltage: 3.0-3.4V | ||
| + | |||
| + | *Operating current: 20mA | ||
| + | |||
| + | == Features == | ||
| + | |||
| + | Dimensions: 28.9×20.0×9.5mm | ||
| + | |||
| + | Net weight: 2.4g | ||
| + | |||
| + | == Dimension == | ||
| + | |||
| + | [[File:High power led dimension1.jpg]] | ||
== Schematics == | == Schematics == | ||
*[https://s3.amazonaws.com/linksprite/LinkerKit/High+Power+LED.pdf Schematics] | *[https://s3.amazonaws.com/linksprite/LinkerKit/High+Power+LED.pdf Schematics] | ||
| + | |||
| + | ==Application Ideas== | ||
| + | |||
| + | '''test''' | ||
| + | <syntaxhighlight lang="c"> | ||
| + | /* | ||
| + | Linker High Power LED | ||
| + | the LED will turn on for 1s and then turn off for 1s, and so on. | ||
| + | |||
| + | This example code is in the public domain. | ||
| + | */ | ||
| + | |||
| + | int LEDControlPin = 12; | ||
| + | void setup() { | ||
| + | // initialize the digital pin as an output. | ||
| + | |||
| + | pinMode(LEDControlPin, OUTPUT); | ||
| + | } | ||
| + | |||
| + | void loop() { | ||
| + | digitalWrite(LEDControlPin, HIGH); // set the LED on | ||
| + | delay(1000); // wait for a second | ||
| + | digitalWrite(LEDControlPin, LOW); // set the LED off | ||
| + | delay(1000); // wait for a second | ||
| + | } | ||
| + | </syntaxhighlight> | ||
| + | |||
| + | [[File:High Power LED link.jpg]] | ||
==How to buy== | ==How to buy== | ||
Here to buy High Power Led Module on [http://store.linksprite.com/high-power-led-of-linker-kit-for-pcduino-arduino/ store] | Here to buy High Power Led Module on [http://store.linksprite.com/high-power-led-of-linker-kit-for-pcduino-arduino/ store] | ||
Latest revision as of 08:02, 17 September 2014
Contents
Introduction
This is a high power LED module. It has five bright LEDs.
Specification
The high power led unit is 3528.
- Working Voltage: 3.0-3.4V
- Operating current: 20mA
Features
Dimensions: 28.9×20.0×9.5mm
Net weight: 2.4g
Dimension
Schematics
Application Ideas
test <syntaxhighlight lang="c"> /*
Linker High Power LED the LED will turn on for 1s and then turn off for 1s, and so on. This example code is in the public domain. */
int LEDControlPin = 12; void setup() {
// initialize the digital pin as an output. pinMode(LEDControlPin, OUTPUT);
}
void loop() {
digitalWrite(LEDControlPin, HIGH); // set the LED on delay(1000); // wait for a second digitalWrite(LEDControlPin, LOW); // set the LED off delay(1000); // wait for a second
} </syntaxhighlight>
How to buy
Here to buy High Power Led Module on store


