Science, asked by chandrahemika, 8 months ago

10) In adreuino Programming, delay(100)
results in a delay of

Answers

Answered by parmodkumar89527
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