-
Notifications
You must be signed in to change notification settings - Fork 33
Open
Description
Is there a way to have text scroll from one screen to another? I've looked at the LEDMatrix example where it calls out:
FastLED.addLeds<CHIPSET, 9, COLOR_ORDER>(leds[0], 0, NUM_LEDS_PER_STRIP);
FastLED.addLeds<CHIPSET, 9, COLOR_ORDER>(leds[0], NUM_LEDS_PER_STRIP, NUM_LEDS_PER_STRIP);
and so on. It looks like this sets it up as one giant matrix (which I'm ok with as long as I can get my text to scroll from one screen to the other).
I see that FASTLed has it set up as:
FastLED.addLeds<CHIPSET, PIN>(leds[0], NUM_LEDS_PER_STRIP);
FastLED.addLeds<CHIPSET, PIN>(leds[1], NUM_LEDS_PER_STRIP);
called as:
leds[x][i] = CRGB::Red; // x=led strip
But can't seem to get the [x][i] method to work in LEDText
I've tried playing with the matrix width and number of LED's per strip, but it ends up scrambled (probably due to the LED numbering being off).
Any ideas on this one? Thanks again!
Metadata
Metadata
Assignees
Labels
No labels