1
mirror of https://github.com/home-assistant/core synced 2024-08-31 05:57:13 +02:00
ha-core/homeassistant/components/ihc/services.yaml
Jens Østergaard Nielsen b80571519b
IHC service functions support for multiple IHC controllers (#44626)
Co-authored-by: Martin Hjelmare <marhje52@gmail.com>
2021-01-30 12:46:50 +01:00

59 lines
1.6 KiB
YAML

# Describes the format for available IHC services
set_runtime_value_bool:
description: Set a boolean runtime value on the IHC controller.
fields:
controller_id:
description: |
If you have multiple controller, this is the index of you controller
starting with 0 (0 is default)
example: 0
ihc_id:
description: The integer IHC resource ID.
example: 123456
value:
description: The boolean value to set.
example: true
set_runtime_value_int:
description: Set an integer runtime value on the IHC controller.
fields:
controller_id:
description: |
If you have multiple controller, this is the index of you controller
starting with 0 (0 is default)
example: 0
ihc_id:
description: The integer IHC resource ID.
example: 123456
value:
description: The integer value to set.
example: 50
set_runtime_value_float:
description: Set a float runtime value on the IHC controller.
fields:
controller_id:
description: |
If you have multiple controller, this is the index of you controller
starting with 0 (0 is default)
example: 0
ihc_id:
description: The integer IHC resource ID.
example: 123456
value:
description: The float value to set.
example: 1.47
pulse:
description: Pulses an input on the IHC controller.
fields:
controller_id:
description: |
If you have multiple controller, this is the index of you controller
starting with 0 (0 is default)
example: 0
ihc_id:
description: The integer IHC resource ID.
example: 123456