Samsung ASHP schedu...
 
Notifications
Clear all

Samsung ASHP scheduling help

232 Posts
24 Users
27 Reactions
37.2 K Views
(@redzer_irl)
Trusted Member Member
561 kWhs
Joined: 2 years ago
Posts: 37
 

I came across this video which is an interesting example of heat pump control within Home Assistant


   
👍
1
ReplyQuote
(@jasoncs1)
New Member Member
42 kWhs
Joined: 2 years ago
Posts: 3
 

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?

Thanks in advance for any help 😀 
 

   
ReplyQuote
(@derek-m)
Illustrious Member Member
15283 kWhs
Veteran Expert
Joined: 4 years ago
Posts: 4429
 

Posted by: @jasoncs1

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?

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?

 


   
ReplyQuote
(@jasoncs1)
New Member Member
42 kWhs
Joined: 2 years ago
Posts: 3
 

Posted by: @derek-m

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?

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.


   
ReplyQuote
(@derek-m)
Illustrious Member Member
15283 kWhs
Veteran Expert
Joined: 4 years ago
Posts: 4429
 

@jasoncs1

What sensors are you trying to monitor and what kind of automation are you trying to achieve within HA?


   
ReplyQuote
(@derek-m)
Illustrious Member Member
15283 kWhs
Veteran Expert
Joined: 4 years ago
Posts: 4429

   
ReplyQuote



(@jasoncs1)
New Member Member
42 kWhs
Joined: 2 years ago
Posts: 3
 

@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
 
 

   
ReplyQuote
(@derek-m)
Illustrious Member Member
15283 kWhs
Veteran Expert
Joined: 4 years ago
Posts: 4429
 

@jasoncs1

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.


   
ReplyQuote
(@kocta)
Active Member Member
140 kWhs
Joined: 2 years ago
Posts: 6
 

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

 


   
ReplyQuote
(@kocta)
Active Member Member
140 kWhs
Joined: 2 years ago
Posts: 6
 

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


   
ReplyQuote
(@redzer_irl)
Trusted Member Member
561 kWhs
Joined: 2 years ago
Posts: 37
 

@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

   
ReplyQuote
(@redzer_irl)
Trusted Member Member
561 kWhs
Joined: 2 years ago
Posts: 37
 

Posted by: @iancalderbank

Posted by: @redzer_irl

The 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.

PXL 20230915 094123770

 

 


   
ReplyQuote



Page 12 / 20



Share:

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)

👉 Book a one-to-one consultation now.

Latest Posts

x  Powerful Protection for WordPress, from Shield Security
This Site Is Protected By
Shield Security