LED Module – 7-Colour Flash

$4.15

19 in stock

Description

7-Color LED Module Code


/* SETUP

7 Color LED    Arduino
-       -      GND
+       -      5V
S       -      D13
*/
 
void setup () {
  // Initialize the digital pin as an output.
  // Pin 13 has an LED connected on most Arduino boards:
  pinMode (13, OUTPUT);
}
void loop () {
  digitalWrite (13, HIGH); // set the LED on
  delay (2000); // wait for a second
  digitalWrite (13, LOW); // set the LED off
  delay (2000); // wait for a second
}

 

Additional information

Weight 0.002 kg

There are no reviews yet.

Be the first to review “LED Module – 7-Colour Flash”

Your email address will not be published. Required fields are marked *