Report Bug
Qus : Which command is used to create a delay in the Arduino program?
QusArduino प्रोग्राम में देरी करने के लिए किस कमांड का उपयोग किया जाता है?

A. digitalRead()
B. for()
C. pinMode()
D. delay()


Solution
D. delay()



Explanation
The delay() function allows you to pause the execution of your Arduino program for a specified period. For that purpose, the method requires you to supply it with a whole number that specifies how many milliseconds the program should wait.



Report Bug