Datasheet

IDUINO for Maker’s life
www.openplatform.cc
2 Pinout
Pin
Description
IN
Input signal pin, you can input stable
voltage or a PWM signal
Vcc
Power
Gnd
Ground
3.Example
In this example, you can see the brightness of the LED is changing.
******Code Begin******
void setup ()
{
pinMode(11,OUTPUT);
}
void loop()
{
for (int a=0; a<=255;a++)
{
analogWrite(11,a);
delay(8);
}