产品编号:1
产品型号:红色 LINKER_10MMRED 黄色 LINKER_10MMYELLOW
绿色 LINKER_10MMGreen 蓝色 LINKER_10MMBLUE
资料链接:http://picimg.lshou.com/pic/linksprite.com/wiki/index.php5@title=10mm_Green_LED_Module
10MM大灯,看着就是爽,并且颜色直观;采用2.54接口,非常好支持额线。
信号类型:DIGITA(数字),连接Linker Base 的DIGITA 0到13接口。
pcDuino/Arduino使用例程:(实际代码请从资料链接网站下载)
/*
Linker LED
the LED will slowly blink
This example code is in the public domain.
*/
intledPin=13;
void setup()
{
// initialize the digital pin as an output.
// Pin 13 has an LED connected on most Arduino boards:
pinMode(ledPin,OUTPUT);
}
void loop()
{
digitalWrite(ledPin,HIGH); // set the LED on
delay(500); // wait for a second
digitalWrite(ledPin,LOW); // set the LED off
delay(500); // wait for a second
}