Difference between revisions of "10mm Green LED Module"

From LinkSprite Playgound
Jump to: navigation, search
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 G.jpg | 400px]]
 
[[File:LED10MM G.jpg | 400px]]
  
 +
== Schematics ==
  
== Sample ==
+
*[https://s3.amazonaws.com/linksprite/LinkerKit/Linker_LED.pdf Schematics]
  
 +
==Application Ideas==
  
 +
'''test'''
 
<syntaxhighlight lang="c">
 
<syntaxhighlight lang="c">
 
 
/*
 
/*
   grove Relay
+
   Blink
   the LED will slowly blink
+
   Turns on an LED on for one second, then off for one second, repeatedly.
 
   
 
   
 
   This example code is in the public domain.
 
   This example code is in the public domain.
 
  */
 
  */
  
int RelayControlPin = 13;
 
 
void setup() {                 
 
void setup() {                 
 
   // initialize the digital pin as an output.
 
   // initialize the digital pin as an output.
  // Pin 13 has an LED connected on most Arduino boards:
+
   pinMode(13, OUTPUT);     
   pinMode(RelayControlPin, OUTPUT);     
 
 
}
 
}
  
 
void loop() {
 
void loop() {
   digitalWrite(RelayControlPin, HIGH);  // set the LED on
+
   digitalWrite(13, HIGH);  // set the LED on
   delay(500);              // wait for a second
+
   delay(1000);              // wait for a second
   digitalWrite(RelayControlPin, LOW);    // set the LED off
+
   digitalWrite(13, LOW);    // set the LED off
   delay(500);              // wait for a second
+
   delay(1000);              // wait for a second
 
}
 
}
 
 
</syntaxhighlight>
 
</syntaxhighlight>
 
 
 
== Schematics ==
 
 
*[https://s3.amazonaws.com/linksprite/LinkerKit/Linker_LED.pdf Schematics]
 

Revision as of 04:58, 8 April 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.

400px

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>