Files
core/homeassistant/components/input_number/services.yaml
Franck Nijhof 24840b54ac Add yamllint (in pre-commit and CI) (#33676)
* Add yamllint (in pre-commit and CI)

* Fix linting for all YAML files

* Bump and add it to requirements

* Fix gen_requirements for pre-commit, remove 'v' from version
2020-04-05 10:33:45 +02:00

24 lines
813 B
YAML

decrement:
description: Decrement the value of an input number entity by its stepping.
fields:
entity_id:
description: Entity id of the input number the should be decremented.
example: input_number.threshold
increment:
description: Increment the value of an input number entity by its stepping.
fields:
entity_id:
description: Entity id of the input number the should be incremented.
example: input_number.threshold
set_value:
description: Set the value of an input number entity.
fields:
entity_id:
description: Entity id of the input number to set the new value.
example: input_number.threshold
value:
description: The target value the entity should be set to.
example: 42
reload:
description: Reload the input_number configuration.