Crowtail- Super Bright
Description¶
Crowtail- Super Bright is a high brightness and large angle LED. Then it low thermal resistancea it can be applied to indoor lighting, commercial lighting, you can provide a strong light source for your project, lighting, lighting or so on.
Model:CRT00536L
Features¶
- Operating Voltage: 5VDC
- Opearting Current: 20mA (Max)
Specification¶
Dimensions(mm):20.0(L)x20.0(W)x9.8(H)
Item | Description |
---|---|
LED Control Mode | Digital Pin of Arduino |
Working Voltage | 5V |
Supply Mode | Crowtail Interface |
Usage¶
1. Connect the LED to Base Shield's digital D12 with 4pin Crowtail Cable and micro USB cable to micro USB port.
2.Copy the demo code to your sketch, then upload to Arduino or Crowduino board.
const int ledpin=12;
void setup()
{
pinMode(ledpin,OUTPUT);
}
void loop()
{
digitalWrite(ledpin,HIGH);
delay(1000);
digitalWrite(ledpin,LOW);
delay(1000);
}
3.You will see the LED blink every second.