Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- void setup() {
- // put your setup code here, to run once:
- pinMode(13, OUTPUT); // VODKA
- pinMode(12, OUTPUT); // CRANBERRY
- pinMode(8, OUTPUT);// COINTRAU
- pinMode(7, OUTPUT); // CITRON
- digitalWrite(8, LOW);
- digitalWrite(7, LOW);
- digitalWrite(12, LOW);
- digitalWrite(13, LOW);
- delay(10000);
- digitalWrite(8, HIGH);
- delay(10000);
- digitalWrite(7, HIGH);
- digitalWrite(12, HIGH);
- delay(20000);
- digitalWrite(13, HIGH);
- }
- void loop() {
- // put your main code here, to run repeatedly:
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement