mirror of
https://github.com/openhab/openhab-addons.git
synced 2025-01-25 14:55:55 +01:00
[automower] fix automower command channels (#17539)
* fixed automower command channels Signed-off-by: Michael Weger <weger.michael@gmx.net> Signed-off-by: Ciprian Pascu <contact@ciprianpascu.ro>
This commit is contained in:
parent
cce5d6d3a5
commit
22521c24ac
@ -25,12 +25,12 @@ import org.openhab.core.thing.ChannelUID;
|
||||
*/
|
||||
@NonNullByDefault
|
||||
public enum AutomowerCommand {
|
||||
START("Start", "mower#start"),
|
||||
RESUME_SCHEDULE("ResumeSchedule", "mower#resume_schedule"),
|
||||
PAUSE("Pause", "mower#pause"),
|
||||
PARK("Park", "mower#park"),
|
||||
PARK_UNTIL_NEXT_SCHEDULE("ParkUntilNextSchedule", "mower#park_until_next_schedule"),
|
||||
PARK_UNTIL_FURTHER_NOTICE("ParkUntilFurtherNotice", "mower#park_until_further_notice");
|
||||
START("Start", "start"),
|
||||
RESUME_SCHEDULE("ResumeSchedule", "resume_schedule"),
|
||||
PAUSE("Pause", "pause"),
|
||||
PARK("Park", "park"),
|
||||
PARK_UNTIL_NEXT_SCHEDULE("ParkUntilNextSchedule", "park_until_next_schedule"),
|
||||
PARK_UNTIL_FURTHER_NOTICE("ParkUntilFurtherNotice", "park_until_further_notice");
|
||||
|
||||
private static final Map<String, AutomowerCommand> CHANNEL_TO_CMD_MAP = new HashMap<>();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user