Color.pm: revert erroneous rgb2hsv change

git-svn-id: svn://svn.code.sf.net/p/fhem/code/trunk@11096 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
justme1968
2016-03-20 10:31:14 +00:00
parent bcef95a459
commit a45859a50f

View File

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