Fixed a typo in the rgb_to_hsv converter

This commit is contained in:
Julian Müller (ChaoticByte) 2023-08-04 19:52:50 +02:00
parent 4471dd8897
commit 01a331056b
2 changed files with 3 additions and 3 deletions

View file

@ -472,7 +472,7 @@ Check if the motion sensor detected the presence of someone in it's reach
def rgb_to_hsv(r: int, g: int, b: int) -> tuple
```
Convert RGB colors `(255, 220, 100)` to Philips Hue's hue, saturation and brightness values `(8456, 149, 245)` imprecisely
Convert RGB colors `(255, 220, 100)` to Philips Hue's hue, saturation and brightness values `(8456, 154, 254)` imprecisely
<a id="yahuelib.utils.kelvin_to_mired"></a>