NeoFlash Hat
NeoFlash HAT is specifically designed for M5StickC, it is an RGB LED matrix. Space on PCB board is 58x23.5mm and total include 126 RGB LEDs. Every single RGB LED is programmable, which allows you setting the colors and brightness, plus on the 7*18 matrix layout, you will have a nice experience on either display digital numbers or colorful light effect.
Support the following products:
Micropython Example:
import os, sys, io
import M5
from M5 import *
from hardware import *
from hat import NeoFlashHat
neoflash = NeoFlashHat((26, 0))
neoflash.set_pixel(0, 0, 0xFF0000)
neoflash.set_pixel(1, 0, 0x00FF00)
UIFLOW2 Example:
class NeoFlashHat
Constructors
Methods
Constants
- NeoFlashHat.WIDTH
The width of the NeoFlashHat.
- NeoFlashHat.HEIGHT
The height of the NeoFlashHat.
