Skip to content

Commit

Permalink
[automower] fix automower command channels (openhab#17539)
Browse files Browse the repository at this point in the history
* fixed automower command channels

Signed-off-by: Michael Weger <[email protected]>
  • Loading branch information
MikeTheTux authored Oct 10, 2024
1 parent fbf61e6 commit 834b47c
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@
*/
@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<>();

Expand Down

0 comments on commit 834b47c

Please sign in to comment.