Timers Flashcards
- The
millis()
function returns the number of milliseconds since the Arduino board began running the current program.- True / False
True
- The
micros()
function returns the number of milliseconds since the Arduino board began running the current program.- True / False
False.
Answer: millis()
- The
every()
function in the timer library runs the callback function once after a specified duration.- True / False
False.
Answer: after()
- The
update()
function in the timer library must be called from thesetup()
function.- True / False
False
Answer: Must be called from the loop()
function
- The
oscillate()
function in the timer library toggles the state of a digital output pin every specified period of time.- True / False
True
- The
pulse()
function in the timer library toggles the state of a digital output pin just once after a specified duration.- True / False
True
- The
stop()
function in the timer library stops timer events currently running.- True / False
True
- The
repeatCount
argument in theevery()
function specifies the number of times the callback function should be repeated.- True / False
True
- The
after()
function in the timer library runs the callback function every specified period of time.- True / False
False
Answer: Once after a specified duration, not repeatedly at a specified period of time
- The
millis()
function overflows after approximately 70 minutes.- True / False
False
Answer: Overflows after approximately 50 days
- What does the
millis()
function return?- a) The number of microseconds since the Arduino board began running the current program.
- b) The number of milliseconds since the Arduino board began running the current program.
- c) The number of milliseconds since the Arduino board was manufactured.
- d) The number of microseconds since the Arduino board was manufactured.
b) The number of milliseconds since the Arduino board began running the current program.
- Which function is used to run a callback function every specified period of time?
- a)
every(long period, callback)
- b)
after(long duration, callback)
- c)
oscillate(int pin, long period, int startingValue)
- d)
pulse(int pin, long period, int startingValue)
- a)
a) every(long period, callback)
- How long does it take for the
millis()
function to overflow?- a) Approximately 50 minutes
- b) Approximately 50 hours
- c) Approximately 50 days
- d) Approximately 50 weeks
c) Approximately 50 days
- What is the purpose of the
pulse()
function?- a) To toggle the state of a digital output pin every specified period of time.
- b) To stop a timer event running.
- c) To update all the events associated with the timer.
- d) To toggle the state of a digital output pin just once after a specified duration.
d) To toggle the state of a digital output pin just once after a specified duration.
- How do you specify the number of times a callback function should be repeated in the
every()
function?- a) By passing an additional argument for the repeat count.
- b) By using the
repeatCount
keyword. - c) By calling the
repeat()
function inside the callback. - d) By setting a global variable.
a) By passing an additional argument for the repeat count.
- Which function should be called from the
loop
function to service all the events associated with the timer?- a)
every()
- b)
after()
- c)
stop()
- d)
update()
- a)
d) update()
- How long does it take for the
micros()
function to overflow?- a) Approximately 70 seconds
- b) Approximately 70 minutes
- c) Approximately 70 hours
- d) Approximately 70 days
b) Approximately 70 minutes
- Which function is used to toggle the state of a digital output pin every specified period of time?
- a)
every()
- b)
after()
- c)
oscillate()
- d)
pulse()
- a)
c) oscillate()
- What does the
oscillate()
function do?- a) Runs the callback once after a specified duration.
- b) Toggles the state of a digital output pin every specified period of time.
- c) Stops a timer event running.
- d) Updates all the events associated with the timer.
b) Toggles the state of a digital output pin every specified period of time.
- Which library is used for timer functions?
- a) Timer.h
- b) TimerLib.h
- c) Timer.h library
- d) timer.h
a) Timer.h
- What function returns the number of milliseconds since the Arduino board began running the current program?
millis()
- Name one function from the timer library used to run a callback function every specified period of time.
- every()
- after()
- oscillate()
- pulse()
- What is the purpose of the
oscillate()
function in the timer library?
Toggles the state of a digital output pin every specified period of time.
- How is the number of times a callback function should be repeated specified in the
every()
function?
By passing an additional argument for the repeat count.
- What function should be called from the
loop
function to service all the events associated with the timer?
update()
- How long does it take for the
micros()
function to overflow?
Approximately 70 minutes
- Briefly describe the purpose of the
pulse()
function in the timer library.
Toggles the state of a digital output pin just once after a specified duration.
- What is the function of the
stop()
function in the timer library?
Stops a timer event running
- What function is used to toggle the state of a digital output pin just once after a specified duration?
pulse()
- Which Arduino library provides timer functions for managing timed events in a sketch?
Timer.h