From 19d9de82cf78021621a21ffb5609cf7fb03b2848 Mon Sep 17 00:00:00 2001 From: Stephan Traub Date: Sun, 13 Feb 2022 17:32:55 +0100 Subject: [PATCH] Random P --- pywizlight/bulb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pywizlight/bulb.py b/pywizlight/bulb.py index 1d6dab2..09daeaf 100755 --- a/pywizlight/bulb.py +++ b/pywizlight/bulb.py @@ -206,7 +206,7 @@ def _set_hs_color(self, values: Tuple[float, float]) -> None: rgb, cw = hs2rgbcw(values) _rgb_in_range_or_raise(rgb) # Set the RGB values - params = self.pilot_paramsP + params = self.pilot_params params.update({key: rgb[idx] for idx, key in enumerate(RGB_ORDER)}) if cw is not None: # Use the existing set_warm_white function to set the CW values