Add support for SpotMow status code (#13065)
Fixes #13033 Signed-off-by: Jacob Laursen <jacob-github@vindvejr.dk>
This commit is contained in:
parent
bb2761ffe5
commit
7aa889080e
|
@ -54,6 +54,7 @@ Currently the binding supports ***indego*** mowers as a thing type with these
|
|||
| 517 | Paused |
|
||||
| 518 | Border cut |
|
||||
| 519 | Idle in lawn |
|
||||
| 523 | SpotMow |
|
||||
| 769 | Returning to dock |
|
||||
| 770 | Returning to dock |
|
||||
| 771 | Returning to dock - Battery low |
|
||||
|
|
|
@ -49,6 +49,7 @@ public class DeviceStatus {
|
|||
entry(517, new DeviceStatus("paused", true, DeviceCommand.PAUSE)),
|
||||
entry(518, new DeviceStatus("border-cut", false, DeviceCommand.MOW)),
|
||||
entry(519, new DeviceStatus("idle-in-lawn", true, DeviceCommand.MOW)),
|
||||
entry(523, new DeviceStatus("spotmow", false, DeviceCommand.MOW)),
|
||||
entry(769, new DeviceStatus("returning-to-dock", false, DeviceCommand.RETURN)),
|
||||
entry(770, new DeviceStatus("returning-to-dock", false, DeviceCommand.RETURN)),
|
||||
entry(771, new DeviceStatus("returning-to-dock-battery-low", false, DeviceCommand.RETURN)),
|
||||
|
|
|
@ -73,6 +73,7 @@ indego.state.learning-lawn = Learning lawn
|
|||
indego.state.paused = Paused
|
||||
indego.state.border-cut = Border cut
|
||||
indego.state.idle-in-lawn = Idle in lawn
|
||||
indego.state.spotmow = SpotMow
|
||||
indego.state.returning-to-dock = Returning to Dock
|
||||
indego.state.returning-to-dock-battery-low = Returning to Dock - Battery low
|
||||
indego.state.returning-to-dock-calendar-timeslot-ended = Calendar timeslot ended
|
||||
|
|
|
@ -86,6 +86,7 @@
|
|||
<option value="517">@text/indego.state.paused</option>
|
||||
<option value="518">@text/indego.state.border-cut</option>
|
||||
<option value="519">@text/indego.state.idle-in-lawn</option>
|
||||
<option value="523">@text/indego.state.spotmow</option>
|
||||
<option value="769">@text/indego.state.returning-to-dock</option>
|
||||
<option value="770">@text/indego.state.returning-to-dock</option>
|
||||
<option value="771">@text/indego.state.returning-to-dock-battery-low</option>
|
||||
|
|
Loading…
Reference in New Issue