Difference between revisions of "10mm Red LED Module"

From LinkSprite Playgound
Jump to: navigation, search
(Created page with " == Schematics == *[https://s3.amazonaws.com/linksprite/LinkerKit/Linker_LED.pdf Schematics]")
 
(Features)
 
(4 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 +
==Introduction==
  
 +
Linker LED Module is designed for the beginners of Arduino/pcDuino to monitor controls from digital ports. It can be mounted to the surface of your box or desk easily and used as pilot lamp for power or signal. Its brightness can be adjust by potentiometer.
  
 +
[[File:LED10mm R.jpg]]
  
 +
== Features ==
 +
 +
Dimensions: 20.4×24.2×21.0mm
 +
 +
Net weight: 3g
 +
 +
== Dimension ==
 +
 +
[[File:led 10mm dimension.jpg]]
  
 
== Schematics ==
 
== Schematics ==
  
 
*[https://s3.amazonaws.com/linksprite/LinkerKit/Linker_LED.pdf Schematics]
 
*[https://s3.amazonaws.com/linksprite/LinkerKit/Linker_LED.pdf Schematics]
 +
 +
==Application Ideas==
 +
 +
'''test'''
 +
<syntaxhighlight lang="c">
 +
/*
 +
  Blink
 +
  Turns on an LED on for one second, then off for one second, repeatedly.
 +
 +
  This example code is in the public domain.
 +
*/
 +
 +
void setup() {               
 +
  // initialize the digital pin as an output.
 +
  pinMode(13, OUTPUT);   
 +
}
 +
 +
void loop() {
 +
  digitalWrite(13, HIGH);  // set the LED on
 +
  delay(1000);              // wait for a second
 +
  digitalWrite(13, LOW);    // set the LED off
 +
  delay(1000);              // wait for a second
 +
}
 +
</syntaxhighlight>
 +
 +
[[File:10mm red on.jpg]]

Latest revision as of 05:43, 12 June 2014

Introduction

Linker LED Module is designed for the beginners of Arduino/pcDuino to monitor controls from digital ports. It can be mounted to the surface of your box or desk easily and used as pilot lamp for power or signal. Its brightness can be adjust by potentiometer.

LED10mm R.jpg

Features

Dimensions: 20.4×24.2×21.0mm

Net weight: 3g

Dimension

Led 10mm dimension.jpg

Schematics

Application Ideas

test <syntaxhighlight lang="c"> /*

 Blink
 Turns on an LED on for one second, then off for one second, repeatedly.

 This example code is in the public domain.
*/

void setup() {

 // initialize the digital pin as an output.
 pinMode(13, OUTPUT);     

}

void loop() {

 digitalWrite(13, HIGH);   // set the LED on
 delay(1000);              // wait for a second
 digitalWrite(13, LOW);    // set the LED off
 delay(1000);              // wait for a second

} </syntaxhighlight>

10mm red on.jpg