What is the best practice if you have apps that listen to and get states from zwave entities to have those apps wait until your zwave network is up?
I know there is a method to make [all the apps wait](https://appdaemon.readthedocs.io/en/latest/CONFIGURE.html?highlight=zwave#examples)
,but what if I just want certain apps or certain parts of the app to wait until the entity is available?
Maybe try: except: or including the default= option in the self.get_state() ?
I just feel like I must be missing something that works really well without stopping my whole plugin.