I came across this video which is an interesting example of heat pump control within Home Assistant
Hi all
Recently had a Samsung AE140BXYDGG heat pump installed and have installed the modbus mim-b19n interface to link to Home Assistant. Before coming accross this thread I have been pulling my hair out as I'm new to modbus.
I have connected the modbus interface to a waveshare rs485 to ethernet adapter and have added some code from this thread into HA and I get 2 switches for hot water and heating plus the dhw temp sensor. Can anyone help with the code for the other sensors?
I see there is also a python script to modify the modbus interface. Can this be done over ip or do I need to connect by usb to my pi running HA?
Posted by: @jasoncs1Hi all
Recently had a Samsung AE140BXYDGG heat pump installed and have installed the modbus mim-b19n interface to link to Home Assistant. Before coming accross this thread I have been pulling my hair out as I'm new to modbus.
I have connected the modbus interface to a waveshare rs485 to ethernet adapter and have added some code from this thread into HA and I get 2 switches for hot water and heating plus the dhw temp sensor. Can anyone help with the code for the other sensors?
I see there is also a python script to modify the modbus interface. Can this be done over ip or do I need to connect by usb to my pi running HA?
Thanks in advance for any help 😀ÂÂ
Before trying to accomplish some form of on - off control via HA or otherwise, I would suggest that you consider the benefits of Weather Compensation (WC) control.
How technical are you? Do you understand the internal workings of a digital control system?
Â
Posted by: @derek-mBefore trying to accomplish some form of on - off control via HA or otherwise, I would suggest that you consider the benefits of Weather Compensation (WC) control.
How technical are you? Do you understand the internal workings of a digital control system?
Hi, I'm new to modbus but not far from being able to read all the available sensors. I just need help getting these other sensors into HA then HA can do the automations.
You may find the following of use.
Â
@derek-m thank youÂ
This is my current config, I'm just trying to see as many sensors as possible. It is at a holiday home so I just want to have control remotely. I am not sure what automations yet just integrate into HA before I leave..
# samsung ashp modbus: - name: "Samsung ASHP" type: tcp host: 172.16.1.115 port: 502 sensors: - name: "DHW Temp" slave: 1 address: 75 input_type: holding unit_of_measurement: °C state_class: measurement count: 1 scale: 0.1 offset: 0 precision: 1 switches: - name: Under Floor Heating unique_id: samsung_gen6_14kw_heating slave: 1 address: 52 command_on: 1 command_off: 0 verify: input_type: holding delay: 10 address: 52 state_on: 1 state_off: 0 - name: Hot Water unique_id: samsung_gen6_14kw_hot_water slave: 1 address: 72 command_on: 1 command_off: 0 verify: input_type: holding delay: 10 address: 72 state_on: 1 state_off: 0
One way to start would be to read each consecutive 16 bit Modbus register in turn and then try to decipher the information that is being stored. If you obtain some data by this method I may be able to help with the deciphering process.
Posted by: @steven@tomc are you adding a 120ohm resistor on the MIM-B19N between A+B terminals? I know Homely's install requires it and I see the USB adaptor you shared has a 120ohm on its A+B terminals.
How about ground, are you connecting that at both ends and if so what to?
Finally, are you using shielded/unshielded Cat5 or Beldren and what's your approx run length?
Hi @steven,
could you please say which contacts you used in the outdoor unit for the MIM-B19N
Â
is there a way to insert select switch for register 73 in ESPHome, I tried with number function and it works fine but a switch would be great.
0: Eco
1: Standard
2: Power
3: Force (for the EHS only)
Others: Ignored
@kocta This is my configuration.yaml code which is very much based on the work of others here
# Samsung Heat Pump Modbus Connection modbus: - name: "samsung" type: serial baudrate: 9600 bytesize: 8 method: rtu parity: E port: /dev/ttyUSB0 stopbits: 1 switches: - name: Heating unique_id: samsung_gen6_8kw_heating slave: 1 address: 52 command_on: 1 command_off: 0 verify: input_type: holding delay: 10 address: 52 state_on: 1 state_off: 0 - name: Hot Water unique_id: samsung_gen6_8kw_hot_water slave: 1 address: 72 command_on: 1 command_off: 0 verify: input_type: holding delay: 10 address: 72 state_on: 1 state_off: 0 sensors: - name: "Heat Pump Outdoor Temperature" scan_interval: 60 slave: 1 address: 5 state_class: measurement scale: 0.1 unit_of_measurement: °C precision: 1 data_type: int16 # - name: "Heat Pump Status" # scan_interval: 60 # slave: 1 # address: 52 # data_type: int16 - name: "Heat Pump Mode" slave: 1 address: 53 data_type: int16 - name: "Heat Pump Outdoor Error Code" scan_interval: 60 slave: 1 address: 1 data_type: int16 - name: "Heat Pump Indoor Error Code" scan_interval: 60 slave: 1 address: 63 data_type: int16 - name: "Heat Pump Defrost Status" scan_interval: 60 slave: 1 address: 2 data_type: int16 - name: "Heat Pump Target Indoor Temperature" scan_interval: 60 slave: 1 address: 58 state_class: measurement scale: 0.1 unit_of_measurement: °C precision: 1 data_type: int16 - name: "Heat Pump Indoor Temperature" scan_interval: 60 slave: 1 address: 59 state_class: measurement scale: 0.1 unit_of_measurement: °C precision: 2 data_type: int16 - name: "Heat Pump Return Temperature" unique_id: ss_heat_pump_return_temperature scan_interval: 60 slave: 1 address: 65 state_class: measurement scale: 0.1 unit_of_measurement: °C precision: 1 data_type: int16 - name: "Heat Pump Flow Temperature" unique_id: ss_heat_pump_flow_temperature scan_interval: 60 slave: 1 address: 66 state_class: measurement scale: 0.1 unit_of_measurement: °C precision: 1 data_type: int16 - name: "Heat Pump Water Out Set Temperature" scan_interval: 60 slave: 1 address: 68 state_class: measurement scale: 0.1 unit_of_measurement: °C precision: 1 data_type: int16 - name: "Heat Pump Hot Water Status" slave: 1 address: 72 - name: "Heat Pump Hot Water Mode" scan_interval: 60 slave: 1 address: 73 data_type: int16 - name: "Heat Pump Hot Water Set Temperature" scan_interval: 60 slave: 1 address: 74 state_class: measurement scale: 0.1 unit_of_measurement: °C precision: 1 data_type: int16 - name: "Heat Pump Hot Water Temperature" scan_interval: 60 slave: 1 address: 75 state_class: measurement scale: 0.1 unit_of_measurement: °C precision: 1 data_type: int16 - name: "Heat Pump Flow Rate" unique_id: ss_heat_pump_flow_rate scan_interval: 60 slave: 1 address: 87 state_class: measurement scale: 0.1 precision: 1 data_type: int16 - name: "Heat Pump Discharge Temperature" scan_interval: 60 slave: 1 address: 60 state_class: measurement scale: 0.1 unit_of_measurement: °C precision: 1 data_type: int16 - name: "Heat Pump Heating Discharge Set Temperature" scan_interval: 60 slave: 1 address: 62 state_class: measurement scale: 0.1 unit_of_measurement: °C precision: 1 data_type: int16 - name: "Heat Pump Immersion Heater Mode" scan_interval: 60 slave: 1 address: 85 data_type: int16 - name: "Heat Pump 3way valve position" scan_interval: 60 slave: 1 address: 89 data_type: int16
Â
This is the script I run from an automation which is scheduled or triggered by pressing a Zigbee button I attached to the front of the DHW cylinder to boost the hot water
alias: Boost Hot Water sequence: - service: modbus.write_register data: hub: samsung address: 72 slave: 1 value: 1 alias: Turn Hot Water On - service: modbus.write_register data: hub: samsung address: 73 slave: 1 value: 1 alias: Set Hot Water Mode to Standard - service: modbus.write_register data: hub: samsung address: 74 slave: 1 value: 500 alias: Set Hot Water Temp to 50°C - delay: hours: 0 minutes: 30 seconds: 0 milliseconds: 0 alias: Delay for 30 mins - service: modbus.write_register data: hub: samsung address: 72 slave: 1 value: 0 alias: Turn Hot Water Off - service: modbus.write_register data: hub: samsung address: 73 slave: 1 value: 0 alias: Set Hot Water Mode to Eco - service: modbus.write_register data: hub: samsung address: 74 slave: 1 value: 450 alias: Set Hot Water Temp to 45°C mode: restart icon: tc:heat-index
Posted by: @iancalderbankPosted by: @redzer_irlThe main part is "modbus.write_register" and the payload associated with that.
thank you . Big clue. thank you again. you're running these as HA commands with the modbus connected physically directly to and controlled from your HA machine? you're not using ESPHOME or ESP devices?
would you mind testing if the modbus.write_register HA command is able to succesfully change target flow temp? (register 68) ?
Â
@iancalderbank I have come back to this a number of times but always thought I was doing something wrong. My system was initially set up to use Water Law and when I try to write to register 68, nothing happens - as expected from the information here.
My problem is I cannot figure out how to change my system into non-Water Law mode. I have included a picture of my heating screen below and when I move the blue selection to "Heat" and click OK, I get the following message: "The thermostat is connected and automatically controlled" and then nothing happens. The "Water Law" text remains below the word "Set" on the left hand side and the value remains at 0.0°.
If you, or anyone else, can point my in the right direction to change the settings then I will certainly try to write to register 68 again.
Â
Â
- 22 Forums
- 2,036 Topics
- 44.4 K Posts
- 24 Online
- 3,239 Members
Join Us!
Trusted Installers
Struggling to find a reliable heat pump installer? A poor installation can lead to inefficiencies and high running costs. We now connect homeowners with top-rated installers who deliver quality work and excellent service.
✅ Verified, trusted & experienced installers
✅ Nationwide coverage expanding
✅ Special offers available
Latest Posts
-
RE: The Rise and Fall of Europe’s Most Generous Green Subsidy
@dwynwen welcome back… and glad to hear you made it thr...
By Mars , 9 hours ago
-
RE: Air Source Heat Pump - Side Alley Suitability
@ad3628 I’ve seen loads of heat pumps successfully inst...
By Mars , 9 hours ago
-
RE: Hitachi Yutaki SCombi Heat Pump - Thermal Off's
@trebor12345 The Auto function is supposed to adapt au...
By Heatgeek , 12 hours ago
-
RE: In the middle of an ASHP installation - a few questions (and issues)
@jamespa they didn't provide any contract, or design pr...
By benson , 14 hours ago
-
RE: The Great British Heat Pump Quiz
@allyfish thanks for the feedback and glad it was fun! ...
By Mars , 17 hours ago
-
RE: help sizing rads based on room by room heat loss
If its 1988W at DT 50, which is how most radiators are ...
By JamesPa , 22 hours ago
-
RE: Career change – entering the world of heating and heat pumps
@editor Mars, thank you. That's along the routes I was ...
By Lakey , 22 hours ago
-
@editor thanks Mars, it's a rare occasion I'm looking f...
By big_si , 1 day ago
-
RE: Efficiency Concerns on newly installed Mitsubishi Ecodan 8.5kW
@ashp-bobba and @jamespa - thank you both for all your ...
By CBrenewable , 1 day ago
-
Thanks both Some useful tips I’ll keep you informed ...
By Fingers , 2 days ago
-
Win one of five "Heat Pumps 101" Courses
Heat pumps are gaining traction in the UK, but between ...
By Mars , 2 days ago
-
RE: Agile: average import cost vs other tariffs?
@toodles thanks for the analysis. I'll be really intere...
By Old_Scientist , 2 days ago
-
RE: ASHP Ecodan L9 error - No Heating but Hot Water
@phoenix15 I'm no plumber so please don't take this as ...
By dnagre , 2 days ago
-
RE: Is this normal? Click of the DHW returning to space heating
@grantmethestrength Oh sorry to hear that, there should...
By ASHP-BOBBA , 3 days ago
-
@ashp-bobba TBH the ladies are rather disorganised, so ...
By Cathyem1 , 3 days ago
-
RE: Solar Power Output – Let’s Compare Generation Figures
And for those of us without an automatic irrigation sys...
By Majordennisbloodnok , 3 days ago
-
Logically, the lower frequency = more gentle, yes, but ...
By SUNandAIR , 3 days ago
-
RE: Ideal Logic ASHP - change from 55°C to 35°C Heating?
Good point. I’ll keep my eye on the manifold temperatur...
By Tomdad , 3 days ago
-
RE: How hard and expensive would it be to change panel and add battery?
@transparent It is a setting that Octopus make via the ...
By Toodles , 3 days ago