Advertisement
RuiViana

Boot_Roteador

Jan 10th, 2016
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1.  
  2. void setup() {
  3.  
  4. pinMode(13, OUTPUT);
  5. }
  6.  
  7.  
  8. void loop() {
  9. digitalWrite(13, HIGH); // Acende o port LED 13
  10. delay(7200000); // espere 2 Horas
  11. digitalWrite(13, LOW); // Apaga o port LED 13
  12. delay(1000); // Espere 1 segundo
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement