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:
justme1968
2015-09-20 08:07:41 +00:00
parent 1e58432ae2
commit 13086e0602

View File

@@ -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