]> git.basschouten.com Git - openhab-addons.git/commitdiff
[automower] fix automower command channels (#17539)
authorMikeTheTux <44850211+MikeTheTux@users.noreply.github.com>
Thu, 10 Oct 2024 19:08:18 +0000 (21:08 +0200)
committerGitHub <noreply@github.com>
Thu, 10 Oct 2024 19:08:18 +0000 (21:08 +0200)
* fixed automower command channels

Signed-off-by: Michael Weger <weger.michael@gmx.net>
bundles/org.openhab.binding.automower/src/main/java/org/openhab/binding/automower/internal/things/AutomowerCommand.java

index de1070c075a4aa657b446b960d0fe24abf889cb3..2849c9345ce986ad888894b6e2a52f4e5525bebe 100644 (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<>();