diff --git a/fhem/FHEM/98_Hyperion.pm b/fhem/FHEM/98_Hyperion.pm index f5b5128c2..30fab1286 100644 --- a/fhem/FHEM/98_Hyperion.pm +++ b/fhem/FHEM/98_Hyperion.pm @@ -529,7 +529,7 @@ sub Hyperion_Set($@) } elsif ($cmd eq "rgb") { - return "Value of $cmd has to be in RGB hex format like ffffff or 3f7d90" if ($value !~ /^(\d|[a-f]){6}$/); + return "Value of $cmd has to be in rgb hex format like ffffff or 3f7d90" if ($value !~ /^(\d|[a-f]){6}$/); my ($r,$g,$b) = Color::hex2rgb($value); $obj{color} = [$r,$g,$b]; $obj{command} = "color"; @@ -952,8 +952,8 @@ sub Hyperion_readingsBulkUpdateIfChanged($$$) { set the light on and restore previous state
  • - rgb <RRGGBB> [duration] [priority]
    - set color in RGB Hex format with optional duration in seconds and priority + rgb <rrggbb> [duration] [priority]
    + set color in rgb hex format with optional duration in seconds and priority
  • saturationGain <1.100>