Advertisement
FalownPSA

cosmo

Mar 26th, 2016
396
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.53 KB | None | 0 0
  1. void setup() {
  2.   // put your setup code here, to run once:
  3.   pinMode(13, OUTPUT); // VODKA
  4.   pinMode(12, OUTPUT); // CRANBERRY
  5.   pinMode(8, OUTPUT);// COINTRAU
  6.   pinMode(7, OUTPUT); // CITRON
  7.  
  8.  
  9.   digitalWrite(8, LOW);
  10.   digitalWrite(7, LOW);
  11.   digitalWrite(12, LOW);
  12.   digitalWrite(13, LOW);
  13.  
  14.   delay(10000);
  15.   digitalWrite(8, HIGH);
  16.   delay(10000);
  17.   digitalWrite(7, HIGH);
  18.   digitalWrite(12, HIGH);
  19.   delay(20000);
  20.   digitalWrite(13, HIGH);
  21. }
  22.  
  23. void loop() {
  24.   // put your main code here, to run repeatedly:
  25.  
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement