rpi-led-matrix-painter
Version:
Add drawing facilities to rpi-led-matrix. Manage sections of the board independently, draw shapes, text, and images.
12 lines • 335 B
text/typescript
export enum EffectType {
BLINK = "BLINK",
PULSE = "PULSE",
FADETOBLACK = "FADETOBLACK",
FADEUP = "FADEUP",
ROTATECLOCKWISE = "ROTATECLOCKWISE",
ROTATEANTICLOCKWISE = "ROTATEANTICLOCKWISE",
SCROLLLEFT = "SCROLLLEFT",
SCROLLRIGHT = "SCROLLRIGHT",
SCROLLUP = "SCROLLUP",
SCROLLDOWN = "SCROLLDOWN"
}