millis() 是否从主程序循环或设置循环的开始开始计数?

Does millis() count from the start of the main program loop or the setup loop?

我正在为一个 Arduino 项目编写代码,该项目使用时间来计算每分钟的转数。只是为了让我了解我的代码的准确性,我想知道 millis() 函数是否在 Arduino 打开时开始计数,当它到达 setup() function 时,或者主程序loop()什么时候启动?有人知道是哪一个吗?

millis()函数的计数器从你的程序开始,也就是说从void setup()函数开始。

希望你的困惑得到解决。