You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The error is related to the ambiguous millis() function due to the fact that there are different definitions of this function in the code. We can solve this problem by using a specific notation of the function so that the compiler knows which version to use.
For example:
Instead of millis(), use esphome::millis() if we will refer a function defined in ESPHome.
The text was updated successfully, but these errors were encountered:
The error is related to the ambiguous millis() function due to the fact that there are different definitions of this function in the code. We can solve this problem by using a specific notation of the function so that the compiler knows which version to use.
For example:
Instead of millis(), use esphome::millis() if we will refer a function defined in ESPHome.
The text was updated successfully, but these errors were encountered: