2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-09 13:45:33 +00:00

Color.pm: revert erroneous rgb2hsv change

git-svn-id: https://svn.fhem.de/fhem/trunk@11096 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
justme-1968 2016-03-20 10:31:14 +00:00
parent 2c198fc4eb
commit de6cfbd9c4

View File

@ -148,7 +148,7 @@ rgb2hsv($$$) {
$s = $c / $M;
}
$v = $M/255;
$v = $M;
return( $h,$s,$v );
}