• Home
  • pcDuino
  • WiKi
  • Store
  • Distributors
  • Home
  • pcDuino
  • WiKi
  • Store
  • Distributors
HomeArduinoSensors Kit for ArduinoKY011: Dual Light LEDs module
Previous Next

KY011: Dual Light LEDs module

Posted by: admin , April 25, 2014

int redpin = 11;    // select the input pin for the potentiometer

int bluepin =10;      // select the pin for the LED

int val;

 

void setup() {

  pinMode(redpin, OUTPUT);

  pinMode(bluepin, OUTPUT);

  Serial.begin(9600);

}

 

void loop() 

{

for(val=255; val>0; val--)

  {

   analogWrite(11, val);

   analogWrite(10, 255-val);

   delay(15); 

  }

for(val=0; val<255; val++)

  {

   analogWrite(11, val);

   analogWrite(10, 255-val);

   delay(15); 

  }

 Serial.println(val, DEC);

}


Tags: Sensors Kit for Arduino

Share!
Tweet

admin

About the author

Leave a Reply Cancel reply

You must be logged in to post a comment.

Category

  • Home
  • pcDuino
  • WiKi
  • Store
  • Distributors