Can i setup that up if i’m using a docker, and not running on a pi?
If you have appdaemon you can install it. See the docs. https://hass-apps.readthedocs.io/en/latest/getting-started.html
I do use appdaemon, but again, that’s a docker. lol
As i see it it’s some sort of addon for appdaemon. This is from docs.
When you have the official AppDaemon container up and running, create a file named requirements.txt
in your apps
directory (or one of its sub-directories) with one of the following contents…
Out of interest is there a way of setting the input_number if the generic thermostat changes?
e.g. I’m using appdaemon as a dashboard around the house, but if my wife changes the temperature via alexa, i want the dashboard to reflect that. (i already have an automation that sets the input_number to the target temperature, i need one that goes the other way too, i have this at the moment, but it isnt working.
alias: Heating Setpoint to Input Number
trigger:
- above: '15'
below: '30'
entity_id: climate.heating
platform: numeric_state
action:
service: input_number.set_value
data_template:
entity_id: input_number.target_temp
set_value: '{{ states.climate.heating.state }}'
service: input_number.set_value
Ideally i’d rather do both of these is node red, but just want to get it working at the moment.
TIA