From bc9a451c614d83181d3f4c46318f624599e361d1 Mon Sep 17 00:00:00 2001 From: siinus Date: Sat, 27 Feb 2021 03:49:29 +0200 Subject: [PATCH] Pixel calculation error --- pyleds/lib/Litsimaja.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyleds/lib/Litsimaja.py b/pyleds/lib/Litsimaja.py index a991a60..422426a 100644 --- a/pyleds/lib/Litsimaja.py +++ b/pyleds/lib/Litsimaja.py @@ -13,7 +13,7 @@ class Litsimaja(object): self._strip = PixelStrip(290, 18, 800000, 10, False, 255, 0, 4104) self._loops = [] self._strip.begin() - self._regions: Regions = Regions(self.count_pixels(), [49, 99, 194, 244]) + self._regions: Regions = Regions(self.count_pixels(), [46, 96, 191, 241]) def count_pixels(self) -> int: return self._strip.numPixels()