📜  arduino millis - C 编程语言代码示例

📅  最后修改于: 2022-03-11 15:04:43.150000             🧑  作者: Mango

代码示例1
/*Description
Returns the number of milliseconds passed since the Arduino board began running the current program. This number will overflow (go back to zero), after approximately 50 days.

Syntax                                                                     */
time = millis()

/*
Returns
Number of milliseconds passed since the program started.
Return Data type: unsigned long.
*/