Hey All,
I am currently experimenting with a Teensy 3.2 and a Octows2811.
I saw in the videodisplay example that you directly write into the drawingMemmory to set the leds.
so when i do:
so i expected that
so my question is how does this drawingMemmory work? Is there a reference somewhere i can read?
I know about leds.setColor() I am just curious on how this works ,
Thanks!
I am currently experimenting with a Teensy 3.2 and a Octows2811.
I saw in the videodisplay example that you directly write into the drawingMemmory to set the leds.
so when i do:
All the first green leds of each output turn on.drawingMemory[0] = (255<< 16) | (0 << 8) | (0 << 0);
so i expected that
would turn on the red ones but nothing happens.drawingMemory[1] = (255<< 16) | (0 << 8) | (0 << 0);
so my question is how does this drawingMemmory work? Is there a reference somewhere i can read?
I know about leds.setColor() I am just curious on how this works ,
Thanks!