* Add returning activity state * update tests * update tests * set can return to returning state * update MQTT tests * update mqtt back to docked * fix up other tests that I broke again * re-add mower_can_dock
29 lines
660 B
JSON
29 lines
660 B
JSON
{
|
|
"title": "Lawn mower",
|
|
"entity_component": {
|
|
"_": {
|
|
"name": "[%key:component::lawn_mower::title%]",
|
|
"state": {
|
|
"error": "Error",
|
|
"paused": "[%key:common::state::paused%]",
|
|
"mowing": "Mowing",
|
|
"docked": "Docked",
|
|
"returning": "Returning"
|
|
}
|
|
}
|
|
},
|
|
"services": {
|
|
"start_mowing": {
|
|
"name": "Start mowing",
|
|
"description": "Starts the mowing task."
|
|
},
|
|
"dock": {
|
|
"name": "Return to dock",
|
|
"description": "Stops the mowing task and returns to the dock."
|
|
},
|
|
"pause": {
|
|
"name": "Pause",
|
|
"description": "Pauses the mowing task."
|
|
}
|
|
}
|
|
}
|