Skip to content

Way to have text scroll across two matrix? #27

@CobaltEcho

Description

@CobaltEcho

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!

Pic of screen setup:
ScreenSetup

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions