top of page

09 Time Functions

millis()

Returns the number of milliseconds since the Arduino board began running the current program. This number will overflow (go back to zero), after approximately 50 days.


Note: Please note that the return value for millis() is an unsigned long, logic errors may occur if a programmer tries to do arithmetic with smaller data types such as int's. Even signed long may encounter errors as its maximum value is half that of its unsigned counterpart.


millis()


Returns

Number of milliseconds since the program started (unsigned long)



© 2021 Odyssey Navigator. All rights reserved.

bottom of page