Closed dpgeorge closed 1 year ago
The current esp32 quickref states that -1 is a valid Timer id, for software timers. But this is not true, there are actually 4 timers with ids 0-3. For example Timer(-1) and Timer(3) are equivalent.
-1
Timer(-1)
Timer(3)
Resolved, see ESP32 Quickref/Timers.
The current esp32 quickref states that
-1
is a valid Timer id, for software timers. But this is not true, there are actually 4 timers with ids 0-3. For exampleTimer(-1)
andTimer(3)
are equivalent.