Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SK6812 RGBW Weise Led nicht einzel ansteuerbar #169

Open
dano0894 opened this issue Jun 15, 2022 · 3 comments
Open

SK6812 RGBW Weise Led nicht einzel ansteuerbar #169

dano0894 opened this issue Jun 15, 2022 · 3 comments

Comments

@dano0894
Copy link

Hallo ich habe folgendes problem:
Von der Audiosteuerung funktioniert eigentlich alles aber wen ich im nonaudio bereich beim singel effekt einstellen will, dass er nur die einzelne weise LED ansteuert dann bleibt der streifen leider dunkel

Vielen Dank für den Suport
Tolles Projekt 😋

Liebe Grüsse

@TobKra96
Copy link
Owner

TobKra96 commented Oct 9, 2022

Hey, hast du geprüft, ob der richtige LED Streifen in den Device Settings ausgewählt ist? Ich habe gerade leider keinen RGBW Streifen zur Hand.

@paddrix
Copy link

paddrix commented Sep 10, 2023

Hi, falls es noch relevant ist... hatte das selbe Problem und habe es wie folgt gefixt: "SK6812" durch "sk6812" ersetzen in server/libs/outputs/output_raspi.py und server/libs/effects/effect_single.py.

Bei meinem speziellen RGBW LED Stripe waren dann die Farben noch vertauscht, was ich durch folgende Zeilen in libs/outputs/output_raspi.py behoben habe:

w = np.left_shift(output_array[3][:].astype(int), 24) # pylint: disable=assignment-from-no-return
g = np.left_shift(output_array[1][:].astype(int), 16) # pylint: disable=assignment-from-no-return
r = np.left_shift(output_array[0][:].astype(int), 8) # pylint: disable=assignment-from-no-return
b = output_array[2][:].astype(int)
grbw = np.bitwise_or(np.bitwise_or(np.bitwise_or(r, w), g), b).astype(np.uint32)

@dano0894
Copy link
Author

dano0894 commented Sep 13, 2023 via email

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants