mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-03-10 09:16:53 +00:00
Color.pm: hsb2rgb fix (forum #41251)
git-svn-id: https://svn.fhem.de/fhem/trunk@9280 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
a452a02807
commit
6864563679
@ -221,7 +221,7 @@ hsb2rgb ($$$) {
|
||||
my $g = int( $rgb[1] * 255 );
|
||||
my $b = int( $rgb[2] * 255 );
|
||||
|
||||
return ( $h, $s, $bri );
|
||||
return ( $r, $g, $b );
|
||||
}
|
||||
|
||||
sub
|
||||
|
Loading…
x
Reference in New Issue
Block a user