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

Minuten Eck-LEDs, Laufrichtung #33

Open
lars587 opened this issue Oct 8, 2021 · 1 comment
Open

Minuten Eck-LEDs, Laufrichtung #33

lars587 opened this issue Oct 8, 2021 · 1 comment

Comments

@lars587
Copy link

lars587 commented Oct 8, 2021

Eck LEDs werden als separate Minuten nicht dargestellt (funktionieren aber bei Hintergrundbeleuchtung)
Kann man aufgrund falscher Anordnung die Reihen (Start oben links) spiegeln.
Klappt trotz Umschreibung der Wortdefinitionen nicht.
Wo liegt mein Fehler?

@pL4uN3r
Copy link

pL4uN3r commented Nov 25, 2021

schwer zu sagen ohne den code von dir...
hatte es beim kollege so gemacht, wenn du 10x11 (also 110leds ...0-109) einfach 4 weiter leds dran löten in die ecken und auf 11x11 (also 121... 0-120) in der config einstellen und in der sprachdatei die "led nummern" ändern

if(GRID_SINGLE_MINUTES == 1) {
// single minutes
if(singleMinute >= 1) {
Led::ids[110].setRGB(Config::color_fg.r, Config::color_fg.g, Config::color_fg.b); // <--- hier
}
if(singleMinute >= 2) {
Led::ids[111].setRGB(Config::color_fg.r, Config::color_fg.g, Config::color_fg.b); // <--- hier
}
if(singleMinute >= 3) {
Led::ids[112].setRGB(Config::color_fg.r, Config::color_fg.g, Config::color_fg.b); // <--- hier
}
if(singleMinute >= 4) {
Led::ids[113].setRGB(Config::color_fg.r, Config::color_fg.g, Config::color_fg.b); // <--- und hier
}
} else {
for(int s = 0; s < singleMinute; s++) {
Led::ids[s].setRGB(Config::color_fg.r, Config::color_fg.g, Config::color_fg.b);
}
}

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

2 participants