t0mg / wordclock

ESP32 based DIY word clock project
Apache License 2.0
66 stars 11 forks source link

Crashes on ESP32C3 #9

Closed tjfsteele closed 10 months ago

tjfsteele commented 11 months ago

Timer.cpp line 32 tries to create timer 3 but the ESP32C3 only has two.

Suggest changing the line to

timer_ = timerBegin(1, 8000, 1); // div 80

t0mg commented 10 months ago

Would you mind sending a PR?

Note: I plan on updating this project with the new version of IOTWebConf but this got delayed by external factors (I broke my own clock). Any contribution towards maintaining this project is most welcome :)

Thanks!

tjfsteele commented 10 months ago

I've submitted a PR. Thank you for accepting the previous one.

tjfsteele commented 10 months ago

Note: I plan on updating this project with the new version of IOTWebConf but this got delayed by external factors (I broke my own clock). Any contribution towards maintaining this project is most welcome :)

May be able to help - email github@tjfs.com

t0mg commented 10 months ago

Thanks for the PR. Happy to discuss if you're willing to help further! On my side I don't think I'll be able to work on this before end of year.

tjfsteele commented 10 months ago

Happy to discuss if you're willing to help further!

Hope to hear from you soon.

Tim