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.
- 21 Forums
- 1,962 Topics
- 42.6 K Posts
- 53 Online
- 2,275 Members
Join Us!
Heat Pump Dramas?
Thinking about installing a heat pump but unsure where to start? Already have one but it’s not performing as expected? Or are you locked in a frustrating dispute with an installer or manufacturer? We’re here to help.
✅ Pre-Installation Planning
✅ Post-Installation Troubleshooting
✅ Performance Optimisation
✅ Complaint Support (Manufacturer & Installer)
Latest Posts
-
RE: Heat Pump Sizing & Installation Costs
Perhaps useful to have installed date too? To get conte...
By Tim441 , 27 seconds ago
-
RE: What is the best strategy for operating a very oversized heat pump?
Something else... that works for some people... LG ha...
By Tim441 , 7 minutes ago
-
RE: Newbie out of her depth – Samsung AE120RXYDEG 12kW heat pump
OMG, the attached schematics (even with incorrect room ...
By BAMi , 57 minutes ago
-
RE: Setback savings - fact or fiction?
@cathoderay I see you are continuing to misquote from t...
By SUNandAIR , 1 hour ago
-
RE: Samsung Gen 7 R290 12kW is not behaving how I expected
So I turned my thermostats down last night And w...
By Joshua , 2 hours ago
-
RE: SolarPV tables / online calculator
I'd be interested what others find whilst using that we...
By Majordennisbloodnok , 2 hours ago
-
Volumisers in Heat Pump Systems: Does Placement Matter?
The debate over buffer tanks in heat pump systems has b...
By Mars , 3 hours ago
-
RE: F.788 Building circuit pump reports internal fault - Vaillant Arotherm
Guess I have to wait for engineer visit. I really hope ...
By jeegnesh , 14 hours ago
-
RE: Act now to defer the UK road tax increase on EVs
@majordennisbloodnok Damn right sir. my attempt at iron...
By Jancold , 17 hours ago
-
RE: ASHP and heating issues in new build house
That’s good gives you more capacity. It made me think, ...
By Terry1812 , 18 hours ago
-
RE: Seewet manhole cover within r290 exclusion zone
Thanks! I asked Vaillant, and they say I should be fi...
By dbrb2 , 21 hours ago
-
Looking for the Grant Aerona 3 setting to turn off completely at 20 OAT
I'm running my Aerona 3 on WC and the 'warm end of that...
By damonc , 22 hours ago
-
RE: Do I just go with the lowest quote for my heat pump?
So after signing in Sept in two weeks the install may s...
By Jancold , 23 hours ago
-
RE: Victorian Semi Retrofit / Extension ASHP and UFH Advice
When you are renovating is always a good time, as it ma...
By JamesPa , 1 day ago
-
RE: Just one room not reaching desired temperature
Looks like this issue is now resolved. Aira installed a...
By ChandyKris , 1 day ago
-
There have been several people on the OpenEnergyMonitor...
By RobS , 2 days ago
-
RE: Say hello and introduce yourself
Good point @jamespa But that probably strengthens @ch...
By Transparent , 2 days ago
-
RE: Towel rails. An unexpected final hurdle
@jamespa Beware; the use of the term ‘WC’ might lead to...
By Toodles , 2 days ago
-
RE: Visit a Heat Pump sessions.
Congratulations @toodles, that's a fantastic result. We...
By Old_Scientist , 2 days ago
Latest Topics
-
Heat Pump Sizing & Installation Costs
By Mars 2 hours ago
-
Volumisers in Heat Pump Systems: Does Placement Matter?
By Mars 3 hours ago
-
SolarPV tables / online calculator
By MichelleC 10 hours ago
-
Samsung Gen 7 R290 12kW is not behaving how I expected
By Joshua 22 hours ago
-
By Toodles 2 days ago