mirror of
https://github.com/home-assistant/core.git
synced 2026-08-06 05:14:06 +01:00
a5d5f3f727
* Fix docstring * Add comment * Move counter to folder * Fix missing parts * Commit it when file is saved
20 lines
528 B
YAML
20 lines
528 B
YAML
# Describes the format for available counter services
|
|
|
|
decrement:
|
|
description: Decrement a counter.
|
|
fields:
|
|
entity_id:
|
|
description: Entity id of the counter to decrement.
|
|
example: 'counter.count0'
|
|
increment:
|
|
description: Increment a counter.
|
|
fields:
|
|
entity_id:
|
|
description: Entity id of the counter to increment.
|
|
example: 'counter.count0'
|
|
reset:
|
|
description: Reset a counter.
|
|
fields:
|
|
entity_id:
|
|
description: Entity id of the counter to reset.
|
|
example: 'counter.count0' |