Search found 1 match
- Fri Aug 16, 2024 3:16 am
- Forum: ESP32 Arduino
- Topic: Converting 2.0.17 Timer code to 3.0+
- Replies: 1
- Views: 1093
Converting 2.0.17 Timer code to 3.0+
I am attempting to upgrade some code written with the older Timer library for the esp32 2.17.0 Arduino library that looks something like this: ``` askRequestTimer = timerBegin(0, 80, true); timerAttachInterrupt(askRequestTimer, &onAskReqTimer, true); timerAlarmWrite(askRequestTimer, 5*1000000, true)...