Signed-off-by: Leo Siepel <leosiepel@gmail.com>
This commit is contained in:
lsiepel 2023-12-31 11:00:16 +01:00 committed by GitHub
parent eba975c040
commit 4d4b6d7f04
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -84,6 +84,6 @@ public class MilightV6RGBCWWWHandler extends AbstractLedV6Handler {
@Override
public void changeSpeed(int relativeSpeed, MilightThingState state) {
sendNonRepeatable(4, relativeSpeed > 1 ? 3 : 4);
sendNonRepeatable(4, relativeSpeed == 1 ? 3 : 4);
}
}

View File

@ -77,6 +77,6 @@ public class MilightV6RGBWHandler extends AbstractLedV6Handler {
@Override
public void changeSpeed(int relativeSpeed, MilightThingState state) {
sendNonRepeatable(4, relativeSpeed > 1 ? 3 : 4);
sendNonRepeatable(4, relativeSpeed == 1 ? 3 : 4);
}
}