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 <weger.michael@gmx.net>
  • Loading branch information
MikeTheTux authored and matchews committed Oct 18, 2024
1 parent 99cfb69 commit b29f217
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 b29f217

Please sign in to comment.