Setting modbus created HVAC mode correctly

I have setup modbus connection to my enervent. I do have buttons to change HVAC modes, but they are not seen as HVAC modes inside home assistant. This is a problem with my new nspanel. Can this be fixed somehow ?

Below is examples from my config :

- name: "Enervent Temperature"
  address: 8
  data_type: int16
  max_temp: 40
  min_temp: 5
  target_temp_register: 135
  scale: 0.1
  temp_step: 1
  temperature_unit: C

- name: "Enervent Away Mode"
  address: 1
  write_type: coil
  verify:
    state_on: 1
    state_off: 0

Thank you.

Hello Tomi

Setting that stuff is all in here. Be sure to add a unique_id and some of this will be configurable in the UI.

Example: entities grouping

# Example yaml: entities grouping
modbus:
  - type: tcp
    host: IP_ADDRESS_1
    port: 2020
    name: "modbus_hub"
    binary_sensors:
      - name: binary_sensor1
        address: 100
    climates:
      - name: "Watlow F4T"
        address: 200
    covers:
      - name: Door1
        address: 300
    fans:
      - name: Fan1
        address: 400

If there is still trouble, there is this.

Thank you, ive allready seen these, i just dont know what of them i do need. I presume i need to setup hvac_action_register but i do not have a clue how.

Present it has only HVAC AUTO mode, which is default when no HVAC modes are defined…