Mini Matrix

Mini Matrix 18x8=144Pixel - 60cmX26.6cm(+frame) - 30LEDs/m - 5m WS2812b LED Strip

EN: Welcome to Mini Matrix project. It is a minimalistic matrix project: Only about two evenings of tinkering (and about 40Eur parts if you buy cheap).

DE: Willkommen beim Mini Matrix Projekt. Es ist en Minimalprojekt: Nur etwa zwei Abende basteln (und ca. 40Eur Material, wenn man es billig kauft).

Documentation how to use: Matrix cheat sheet
Quick start:

void PrototypeAnimation(int len_s)  // len_s = length in seconds
{ // your variables
  int x=0; // x-position of the dot

  // standard loop part (copy this part, no need to understand)
  int wait=100; // defines 100 ms steps from frame to frame
  ...some more lines to copy... loop:
  { ...
  
    // your simulation step
    paint(x,0,  255,0,0);     // red (255,0,0) dot at x,0 (0=y is top of screen)
    x = x+1;                  // move right
    if (x >= SCRdx) x=0;      // if at border (SCRdx) restart at 0
  }       // SCRdx / SCRdy is screen size given by framework
}

Parts:

Software Download (Lib and examples, v0.9.0, GPL, zipped Arduino sketch): minimatrix.zip

Gemacht von / Doku von Entwickelt seit / fertig war es ca.
Frank 2014
Bemerkungen
documentation not complete yet
, ,