diff --git a/matrix/weathermatrix.py b/matrix/weathermatrix.py index a7b2b2b..575cfe0 100755 --- a/matrix/weathermatrix.py +++ b/matrix/weathermatrix.py @@ -64,6 +64,9 @@ def render_icon(self, api: Weather) -> None: # Snow Class owm_icon = 600 color: Tuple[int] = (255,255,255) + elif owm_wxcode in range(700, 780): + owm_icon = 711 + color: Tuple[int] = (192, 192, 192) elif owm_wxcode == 800: # Sunny if api.get_sunset > datetime.now():