Advertisement
Guest User

Untitled

a guest
Dec 8th, 2016
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. void(* resetFunc) (void) = 0;
  2.  
  3. void setup() {
  4. Serial.begin(9600);
  5. }
  6.  
  7. void loop() {
  8. if (Serial.available() > 0){
  9. resetFunc();
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement