Replies: 1 comment 1 reply
-
In your case you can go with either the legacy or the docker standalone installation methods. Those work fine. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I was trying to install
emhass
, however I use a manually installed HA Core and I don't have option to install add-ons. I know there are other options to install and I think I will go with one of them, however it got me thinking whyemhass
uses a separate webserver and needs an elaborate methods to exchange data with HA.IIUC operating
emhass
essentially consists of periodically running a python function that fetches data from several HA entities and produces a bunch of data points that can be used by HA automations / display. I think this is exactly what custom components deliver and could simplify the overall workings of the system:emhass
to call out to HA for data exchangeHACS
)The above benefits would require implementing similar functionalities inside the integration, but at least this could be done once without use having to go over long process of setting up necessary parts to execute optimization periodically as in usual use-case.
Having
emhass
as standalone python package that allows calculating optimal energy management plan using any of the provided data sources is clearly a nice approach. I suppose custom HA integration wouldn't change that - it should basically wrap the core implementation with a direct way to get and save data from/to HA.Beta Was this translation helpful? Give feedback.
All reactions