Guest User

Untitled

a guest
Mar 18th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. #define LED 16
  2.  
  3. void setup() {
  4. initialSetup();
  5. //Turn off the built-in led
  6. digitalWrite(LED, HIGH);
  7. }
  8.  
  9. void loop() {
  10. //Here I do everything
  11. doStuff();
  12. //GO TO SLEEP
  13. delay(3600000);
  14. }
Add Comment
Please, Sign In to add comment