1/4
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced | Call with Kai | Chat |
|---|
No analytics yet
Send a link to your students to track their progress
What does delay() do?
It pauses the program for a specified amount of time.
What unit does Arduino's delay() use?
Milliseconds (ms).
How long is delay(1000)?
1000 milliseconds = 1 second
Therefore:
delay(1000);means:
Wait 1 second.
How long is delay(500)?
500 ms = 0.5 seconds
How long is delay(2000)?
2000 ms = 2 seconds