Advertisement
Guest User

Untitled

a guest
Oct 9th, 2015
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. int i = 126;
  2. 2 char c = '~';
  3. 3 char n = 126;
  4. 4
  5. 5 void setup()
  6. 6 {
  7. 7 Serial.begin(9600);
  8. 8 while(!Serial)
  9. 9 {
  10. 10 continue;
  11. 11 }
  12. 12 }
  13. 13
  14. 14 void loop()
  15. 15 {
  16. 16 Serial.write(i);
  17. 17 Serial.println(i);
  18. 18 Serial.write(c);
  19. 19 Serial.println(c);
  20. 20 Serial.write(n);
  21. 21 Serial.println(n);
  22. 22 while (true)
  23. 23 {
  24. 24 continue;
  25. 25 }
  26. 26 }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement