Created
May 31, 2018 08:43
-
-
Save jueti/f6e6379bdf268592f72465f154eb5369 to your computer and use it in GitHub Desktop.
Arduino
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int LEDPin = 13; | |
int waitTimeOn = 10; | |
int waitTimeOff = 90; | |
void setup() { | |
pinMode(LEDPin, OUTPUT); | |
} | |
void loop() { | |
digitalWrite(LEDPin, HIGH); | |
delay(waitTimeOn); | |
digitalWrite(LEDPin, LOW); | |
delay(waitTimeOff); | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment