1. Home
  2. Docs
  3. H60/H66 Gateway Manual
  4. Home Assistant MQTT integ...
  5. Configuration.yaml sample config

Configuration.yaml sample config

Samle config for Rego 1000 heatpumps

This is only to be considerd if making a MANUAL configuration.

If using the automatic DISCOVERY method (preferred), nothing should to be configured in configuration.yaml.

mqtt:
# Temperature sensors and other variables
sensor:
  - name: "Rad Return"
    state_topic: "+/HP/0001"
    unit_of_measurement: "c"     
    icon: mdi:thermometer

  - name: "Rad Forward"
    state_topic: "+/HP/0002"
    unit_of_measurement: "c"
    icon: mdi:thermometer

  - name: "Heat Carrier Return"
    state_topic: "+/HP/0003"
    unit_of_measurement: "c"    
    icon: mdi:thermometer

  - name: "Heat Carrier Forward"
    state_topic: "+/HP/0004"
    unit_of_measurement: "c"
    icon: mdi:thermometer

  - name: "Brine In"
    state_topic: "+/HP/0005"
    unit_of_measurement: "c"
    icon: mdi:thermometer

  - name: "Brine Out"
    state_topic: "+/HP/0006"
    unit_of_measurement: "c"
    icon: mdi:thermometer

  - name: "Outdoor"
    state_topic: "+/HP/0007"
    unit_of_measurement: "c"
    icon: mdi:thermometer

  - name: "Indoor"
    state_topic: "+/HP/0008"
    unit_of_measurement: "c"
    icon: mdi:thermometer

  - name: "Warm water"
    state_topic: "+/HP/0009"
    unit_of_measurement: "c"
    icon: mdi:thermometer

  - name: "Hot gas"
    state_topic: "+/HP/000B"
    unit_of_measurement: "c"
    icon: mdi:thermometer

  - name: "Additional electric heater"
    state_topic: "+>/HP/3104"
    unit_of_measurement: "%"
    icon: mdi:flash


# On/Off units
binary_sensor:
  - name: "Compressor"
    state_topic: "+/HP/1A01"
    payload_on: "1"
    payload_off: "0"

  - name: "Switch valve"
    state_topic: "+/HP/1A07"
    payload_on: "1"
    payload_off: "0"

  - name: "Brine pump"
    state_topic: "+/HP/1A04"
    payload_on: "1"
    payload_off: "0"

  - name: "Radiator pump"
    state_topic: "+/HP/1A06"
    payload_on: "1"
    payload_off: "0"

  - name: "Heat carrier pump"
    state_topic: "+/HP/1A05"
    payload_on: "1"
    payload_off: "0"

  - name: "Alarm"
    state_topic: "+/HP/1A20"
    payload_on: "1"
    payload_off: "0" 

# Heat pump setting
climate:
  - name: "Room temp setting"
    modes:
    current_temperature_topic: "+/HP/0203"
    temperature_state_topic: "+/HP/0203"
    temperature_command_topic: "<your mac adress>/HP/SET/0203"
    min_temp: 13
    max_temp: 26
    temp_step: .1
    
  - name: "Curve Influence setting"
    modes:
    current_temperature_topic: "+/HP/2204"
    temperature_state_topic: "+/HP/2204"
    temperature_command_topic: "<your mac adress>/HP/SET/2204"
    min_temp: 0
    max_temp: 10
    temp_step: .1
    
  - name: "Curve Left setting"
    modes:
    current_temperature_topic: "+/HP/0205"
    temperature_state_topic: "+/HP/0205"
    temperature_command_topic: "<your mac adress>/HP/SET/0205"
    min_temp: 20
    max_temp: 50
    temp_step: .1
   
  - name: "Curve Right setting"
    modes:
    current_temperature_topic: "+/HP/0206"
    temperature_state_topic: "+/HP/0206"
    temperature_command_topic: "<your mac adress>/HP/SET/0206"
    min_temp: 20
    max_temp: 50
    temp_step: .1
    

How can we help?