1
0
mirror of https://github.com/home-assistant/core.git synced 2026-02-21 02:18:47 +00:00
Files
2025-10-28 10:33:10 +01:00

54 lines
1.2 KiB
JSON

{
"entity_component": {
"_": {
"name": "[%key:component::counter::title%]",
"state_attributes": {
"editable": {
"name": "[%key:common::generic::ui_managed%]",
"state": {
"false": "[%key:common::state::no%]",
"true": "[%key:common::state::yes%]"
}
},
"initial": {
"name": "Initial value"
},
"maximum": {
"name": "Maximum"
},
"minimum": {
"name": "Minimum"
},
"step": {
"name": "Step"
}
}
}
},
"services": {
"decrement": {
"description": "Decrements a counter by its step size.",
"name": "Decrement"
},
"increment": {
"description": "Increments a counter by its step size.",
"name": "Increment"
},
"reset": {
"description": "Resets a counter to its initial value.",
"name": "Reset"
},
"set_value": {
"description": "Sets the counter to a specific value.",
"fields": {
"value": {
"description": "The new counter value the entity should be set to.",
"name": "Value"
}
},
"name": "Set"
}
},
"title": "Counter"
}