-
Dear @nliaudat I was looking at the projekt and plan to integrade in my HA-Server.
Can you help me out here? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 8 replies
-
Hi, I mean you'll find all informations on how to control the board with hassio in nliaudat/esp32_8ch_motor_shield#4 The main component used is esphome climate which you can setup in https://github.com/nliaudat/floor-heating-controller/blob/main/config.yaml. The simple way is to update the climate temperature you want. The controller will adjust valve position to reach that temperature. Each climate component has it's own temperature sensor. In the sensor_temperature.yaml, you'll find 7 samples I use, but also external sensors like DHT, 1-wire, etc. I've tested PID solutions, but it's not the good idea as : |
Beta Was this translation helpful? Give feedback.
-
Hi, The simple way is to flash the firmware is :
No need to link anything as in question 1 and 2. For question 3):
corridor_temperature_sensor must match in config.yaml and sensor_temperature.yaml You have nothing to change in other files cause the substitutions in config.yaml are used in the other files like climate.yaml |
Beta Was this translation helpful? Give feedback.
Hi,
I mean you'll find all informations on how to control the board with hassio in nliaudat/esp32_8ch_motor_shield#4
The main component used is esphome climate which you can setup in https://github.com/nliaudat/floor-heating-controller/blob/main/config.yaml. The simple way is to update the climate temperature you want. The controller will adjust valve position to reach that temperature.
Each climate component has it's own temperature sensor. In the sensor_temperature.yaml, you'll find 7 samples I use, but also external sensors like DHT, 1-wire, etc.
I've tested PID solutions, but it's not the good idea as :
1 : the PID climate make the valve activate too much
2 : Very difficult to find go…