From 15a9cd7e1d1576342e67974d22364e6234b7ebf4 Mon Sep 17 00:00:00 2001 From: zen Date: Fri, 14 May 2021 14:31:31 +0000 Subject: [PATCH] Update bsp.py --- bsp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bsp.py b/bsp.py index 07ad2c5..a170f1c 100644 --- a/bsp.py +++ b/bsp.py @@ -255,7 +255,7 @@ class rgb_led(): self.LED_DMA, self.LED_INVERT, self.LED_BRIGHTNESS) self.strip.begin() - def color(self, N, R, G, B): + def color_raw(self, N, R, G, B): if (N < 4 and N > -1): self.strip.setPixelColor(N, Color(R, G, B)) self.strip.show()