Created
September 23, 2018 00:27
-
-
Save alex81632/d42cadb32d657556cbeccd69555ff11d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int tempo = millis(); | |
int delay = 1000; //Tempo de delay em ms | |
while(millis()-tempo<delay){ | |
//executar o código | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment