Samsung Gen 7 Modbus monitoring

We have the modbus interface installed in the outdoor integrated unit. It is connected onto our network using a Waveshare RS485 to ETH (B) POE device. We use these for all monitoring and metering. Inverters, batteries, remote CT etc.

All we can get out of it is LWT RWT and by accident FR. These are being read from using modbus sensors in HA directly.

name: “samsung_ashp”
type: tcp
host: 192.168.0.135
port: 502
sensors:

* name: “ASHP LWT”
  unique_id: ashp_lwt
  address: 66
  input_type: holding
  unit_of_measurement: “°C”
  device_class: temperature
  state_class: measurement
  scale: 0.1
  precision: 1
  slave: 1

* name: “ASHP RWT”
  unique_id: ashp_rwt
  address: 65
  input_type: holding
  unit_of_measurement: “°C”
  device_class: temperature
  state_class: measurement
  scale: 0.1
  precision: 1
  slave: 1

* name: “ASHP Flow Rate”
  unique_id: ashp_flow_rate
  address: 86
  input_type: holding
  unit_of_measurement: “L/min”
  state_class: measurement
  scale: 0.1
  precision: 1
  slave: 1

They do seem to work but we can’t seem to be able to get other info like Target Water Law temp, Indoor temp, Outside temp, Active Electrical power consumption, Compressor % and Pump % etc.

Any help appreciated.

Cheers