Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- byte xpto = 0;
- //-----------------------------------------
- void setup()
- {
- Serial.begin(9600);
- while(xpto == 0)
- {
- if (Serial.available() > 0)
- {
- xpto = Serial.read();
- }
- }
- }
- //-----------------------------------------
- void loop()
- {
- Serial.println(millis());
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement