User manual

IDUINO for Makers life
www.openplatform.cc
2 Pinout
Pin
Description
IN
Signal Input pin
VCC
Power
GND
Ground
3.Example
Wire connection as below:
Vcc-----------5V
Gnd-----------gnd
IN-----------D11
******Code begin******
void setup ()
{
pinMode(11,OUTPUT);
}
void loop()
{
for (int a=0; a<=255;a++)
{
analogWrite(11,a);
delay(8);
}
for (int a=255; a>=0;a--)
{
analogWrite(11,a);
delay(8);
}
delay(800);
}
******Code End******