Skills Dev I - jsawkar

Made by Jai Sawkar

Created: November 5th, 2020

0

Exercise 1

Modify the cloud function to blink the LED 3 times after it is called. 

0

Outcome

Making a simple circuit to create a blinking LED.

0
// setting led1 to the correct plaace on the breadboard 
int led1 = D2;

void setup() {
    pinMode( led1, OUTPUT);
}

void loop() {
    digitalWrite( led1, HIGH );
    delay( 1000 );
    digitalWrite( led1, LOW );
    delay( 1000 );

}
Click to Expand
0

Video: https://vimeo.com/user126487577/review/475952883/5a1d60ff14

x