Sends Value from HA to IHC Controller

Send actual value from a sensor to the IHC controller, you can find the IHC id nr. by starting your IHC Visual Software find the input or function block you want to send the value to, press Ctrl and do a mouse over, then you see the ID.

ID

blueprint:
  name: Float value to IHC
  description: Tranfer a value from HA to IHC.
  domain: automation
  source_url: https://gist.github.com/SKLundgren/ffc732f9e75df084db7713b4ff49833f#file-float_to_ihc-yaml
  input:
    sensor:
      name: Sensor
      selector:
        entity:
          domain: sensor

    ihc_id:
      name: IHC_Id
      description: The unique IHC ID nr.
      default: 0
      selector:
        number:
          min: 0
          max: 10000000000
           
trigger:
  - platform: state
    entity_id: !input sensor

action:
  - service: ihc.set_runtime_value_float
    data:
      ihc_id: !input ihc_id
      value: '{{trigger.to_state.state}}'
mode: single    

In current windows version its impossible to see this id. … id disapears before you catch it

Brug denne her, Preben.
https://www.dingus.dk/updated-ihc-alternative-service-view/

can some one help me with getting the target temperature from generic thermostat sent to IHC?, I can only get a fixed value sent.

I solved it with the following

alias: TEST IHC 2
description: “”
trigger:

  • platform: state
    entity_id:
    • climate.study
      attribute: temperature
      condition:
      action:
  • service: ihc.set_runtime_value_float
    data:
    controller_id: 0
    value: “{{ float(state_attr(‘climate.study’,‘temperature’))}}”
    ihc_id: 18573844
    mode: single
    max: 10