appdaemon
appdaemon copied to clipboard
:page_facing_up: Python Apps for Home Automation
Provides two major benefits: - Reduced image size to ~285Mb - Now compatible with alpine's py3-* packages Has the downside that this is potentially a breaking change for some people...
There is a try catch block in the compiled application.js, which causes problem in some browser (also in fully kiosk browser on my tablet). The problem is that the catch...
Hi, I'm trying to use register route to serve a HTML page. I have the following: ``` class my_app(hass.Hass): def initialize(self): self.set_log_level("DEBUG") self.register_route(self.auth_call, "foobar") async def auth_call(self, request, kwargs): self.log(request)...
In the API Security documentation it talks about an api_key added to the `appdaemon:` section. https://appdaemon.readthedocs.io/en/latest/APPGUIDE.html#api-security However I think this has now moved to the http component and been renamed...
As many others I was puzzled at first when reading the documentation and seeing that `kwargs` was being used without `**` in the callbacks. And soon I found out that,...
Let me know if you guys need some help with testing any changes. Thanks!
I running Appdaemon in docker on raspberry pi. The latest version (AppDaemon Version 4.2.1). The first logging i get the following: ERROR: Unable to lock database: Permission denied ERROR: Failed...
Need add "--network="host"" to the initial docker [docker instructions](https://appdaemon.readthedocs.io/en/latest/DOCKER_TUTORIAL.html) to get appdaemon to work if HA is running in docker as well. Otherwise it will not connect and you get...
In AD, when an app's `global_dependency` module reloads, the app's module doesn't automatically reload This many a times is not an issue, if the module is used or instantiated within...
I have the following settings in my schedy.yaml: sleeping: allow_manual_changes: true rescheduling_delay: 10 actors: climate.eurotronic_spzb0001_1975c403_thermostat: template: zigbee schedule: - value: 23 weekdays: 2-5 start: "8:00" end: "17:00" - value: "OFF"...