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:
justme1968
2016-03-20 10:31:14 +00:00
parent 4f9b187168
commit 9471411d77

View File

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