Does anybody know how to add to yaml DWH (Domestic Water heat) ? #319
smartminjos
started this conversation in
General
Replies: 2 comments 2 replies
|
Hi, I forked that repo time ago to implement custom_climate but it's not working due to latest espHome changes. I moved to another similar project but focussed on nasa protocol. |
2 replies
|
I added a PR a while ago for dwh: #145 & #158 This is how to stick it in your config: water_temperature:
name: "Hot Water Current Temperature"
id: hot_water_current_temp
water_heater_mode:
name: "Hotwater Mode"
id: hotwater_mode
water_target_temperature:
name: "Hot Water Target Temperature"
id: hot_water_target_temp |
0 replies
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 am trying to add DWH to yaml but i am total newbee. I want to see in HA my DWH temperature and chage the modes and target temperature.
I find this in other fork but donno how to add here but does not work with this repository:
ustom_climate: # Didn't like this line when source: github://omerfaruk-aran/esphome_samsung_hvac_bus@main
- name: "Water heater"
status_addr: 0x4237 # mandatory address regarding status temperature
set_addr: 0x4235 # mandatory address regarding setpoint temperature
set_min: 40 # optional, default = 25°C
set_max: 50 # optional, default = 65°C
enable_addr: 0x4065 # mandatory enabling address, only 1/0 should be written there. Look at mode sub section
# By default the value is set = 1 when HA send a value > 0.
preset:
addr: 0x4066 # Address for presets
ClimatePreset0Value: 1 # CLIMATE_PRESET_NONE => 1 Standard
ClimatePreset1Value: -1 # CLIMATE_PRESET_HOME
ClimatePreset2Value: -1 # CLIMATE_PRESET_AWAY
ClimatePreset3Value: 2 # CLIMATE_PRESET_BOOST => 2 Power
ClimatePreset4Value: -1 # CLIMATE_PRESET_COMFORT
ClimatePreset5Value: 0 # CLIMATE_PRESET_ECO => 0 Eco
ClimatePreset6Value: -1 # CLIMATE_PRESET_SLEEP
ClimatePreset7Value: 3 # CLIMATE_PRESET_ACTIVITY => 3 Force
visual:
temperature_step:
target_temperature: 0.5
current_temperature: 0.1
All reactions