hass-core/homeassistant/components/input_number/services.yaml
Paulus Schoutsen b8cc547fa3
Move components to folders (#20774)
* Move all components into folders

* Move component tests into folders

* Fix init moving

* Move tests

* Lint

* Update coverage

* Fix service descriptions

* Update CODEOWNERS
2019-02-05 19:31:15 -08:00

16 lines
733 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}