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
Hi. I see your library is implementing scheduled alarms. I want to use it to create my own firmware for a smart switch. I'm interested in the option to create, view and delete alarms via the web interface. As in the picture. How can I create a new alarm without writing it directly in the code? How to view existing alarms? Thanks
The text was updated successfully, but these errors were encountered:
For anyone reading this and want to know;) Found it, the lambda capture needs to specify the variables that it needs in the lambda object. I was using [&] which captures all known variables on the stack by reference. But that wasn't enough for me, because by the time the lambda was triggered, the references where lost.
Hi. I see your library is implementing scheduled alarms. I want to use it to create my own firmware for a smart switch. I'm interested in the option to create, view and delete alarms via the web interface. As in the picture. How can I create a new alarm without writing it directly in the code? How to view existing alarms? Thanks
The text was updated successfully, but these errors were encountered: