Made by Jai Sawkar
Created: November 5th, 2020
Modify the cloud function to blink the LED 3 times after it is called.
Making a simple circuit to create a blinking LED.
// 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 ); }
Video: https://vimeo.com/user126487577/review/475952883/5a1d60ff14
~