[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:
MikeTheTux 2024-10-10 21:08:18 +02:00 committed by Ciprian Pascu
parent cce5d6d3a5
commit 22521c24ac

View File

@ -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<>();