Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- int red = 8;
- int yellow = 9;
- int green = 10;
- void setup() {
- // put your setup code here, to run once:
- pinMode(red, OUTPUT);
- pinMode(yellow, OUTPUT);
- pinMode(green, OUTPUT);
- }
- void loop() {
- // put your main code here, to run repeatedly:
- digitalWrite(green, LOW);
- digitalWrite(yellow, HIGH);
- delay(3000);
- // turn off yellow, then turn red on for 5 seconds
- digitalWrite(yellow, LOW);
- digitalWrite(red, HIGH);
- delay(5000);
- // red and yellow on for 2 seconds (red is already on though)
- digitalWrite(yellow, HIGH);
- delay(2000);
- // turn off red and yellow, then turn on green
- digitalWrite(yellow, LOW);
- digitalWrite(red, LOW);
- digitalWrite(green, HIGH);
- delay(3000);
- }
Add Comment
Please, Sign In to add comment