10) In adreuino Programming, delay(100)
results in a delay of
Answers
Answered by
0
Answer:
The way the Arduino delay() function works is pretty straight forward. It accepts a single integer as an argument. This number represents the time in milliseconds the program has to waituntil moving on to the next line of code. When you do delay(1000) yourArduino stops on that line for 1 second.
Similar questions