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