From b904e3514b67c2519a0a49739e3819719bf7ba26 Mon Sep 17 00:00:00 2001 From: Stefan Bethke Date: Mon, 16 Dec 2024 16:31:26 +0100 Subject: [PATCH] No dimming instead of full --- dmx.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dmx.py b/dmx.py index e1c0410..b34a850 100644 --- a/dmx.py +++ b/dmx.py @@ -50,7 +50,7 @@ class StairvilleLedPar56(RGB): class ZhennbyPar(RGB): def __init__(self, dmx, slot=1): super(ZhennbyPar, self).__init__(dmx, slot, 1) - dmx.set(self.slot + 0, 0) + dmx.set(self.slot + 0, 255) dmx.set(self.slot + 4, 0) dmx.set(self.slot + 5, 0) dmx.set(self.slot + 6, 0)