Replies: 1 comment
-
I'd like to keep the SHC setup as static as possible, i.e. create all objects before start up. This way, we don't have to worry about any kind of dynamic changes to connectable objects during operation. My current idea for this problem is #45: You would statically create a standard |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
As of now the
_TimerSupervisor
only starts and monitors timers added before startup.I want to create a timer when a window is opened. Based on the current temperature I want an event to inform the user let's say every 20 minutes until the windows is closed again. I have implemented it w/ my own AsnycTimer class but maybe it would make sense to enhance the class
_TimerSupervisor
to allow for addingtimer_tasks
after startup of the system so they get monitored as well.Beta Was this translation helpful? Give feedback.
All reactions