├── .gitignore ├── LICENSE ├── README.md ├── SConscript ├── SConstruct ├── board_info.c ├── board_info.h ├── clk.h ├── dma.c ├── dma.h ├── gpio.h ├── linux.py ├── mailbox.c ├── mailbox.h ├── main.c ├── pwm.c ├── pwm.h ├── python ├── .gitignore ├── examples │ ├── lowlevel.py │ └── strandtest.py ├── ez_setup.py ├── neopixel.py ├── rpi_ws281x.i └── setup.py ├── ws2811.c └── ws2811.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardghirst/rpi_ws281x/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardghirst/rpi_ws281x/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardghirst/rpi_ws281x/HEAD/README.md -------------------------------------------------------------------------------- /SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardghirst/rpi_ws281x/HEAD/SConscript -------------------------------------------------------------------------------- /SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardghirst/rpi_ws281x/HEAD/SConstruct -------------------------------------------------------------------------------- /board_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardghirst/rpi_ws281x/HEAD/board_info.c -------------------------------------------------------------------------------- /board_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardghirst/rpi_ws281x/HEAD/board_info.h -------------------------------------------------------------------------------- /clk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardghirst/rpi_ws281x/HEAD/clk.h -------------------------------------------------------------------------------- /dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardghirst/rpi_ws281x/HEAD/dma.c -------------------------------------------------------------------------------- /dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardghirst/rpi_ws281x/HEAD/dma.h -------------------------------------------------------------------------------- /gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardghirst/rpi_ws281x/HEAD/gpio.h -------------------------------------------------------------------------------- /linux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardghirst/rpi_ws281x/HEAD/linux.py -------------------------------------------------------------------------------- /mailbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardghirst/rpi_ws281x/HEAD/mailbox.c -------------------------------------------------------------------------------- /mailbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardghirst/rpi_ws281x/HEAD/mailbox.h -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardghirst/rpi_ws281x/HEAD/main.c -------------------------------------------------------------------------------- /pwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardghirst/rpi_ws281x/HEAD/pwm.c -------------------------------------------------------------------------------- /pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardghirst/rpi_ws281x/HEAD/pwm.h -------------------------------------------------------------------------------- /python/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardghirst/rpi_ws281x/HEAD/python/.gitignore -------------------------------------------------------------------------------- /python/examples/lowlevel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardghirst/rpi_ws281x/HEAD/python/examples/lowlevel.py -------------------------------------------------------------------------------- /python/examples/strandtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardghirst/rpi_ws281x/HEAD/python/examples/strandtest.py -------------------------------------------------------------------------------- /python/ez_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardghirst/rpi_ws281x/HEAD/python/ez_setup.py -------------------------------------------------------------------------------- /python/neopixel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardghirst/rpi_ws281x/HEAD/python/neopixel.py -------------------------------------------------------------------------------- /python/rpi_ws281x.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardghirst/rpi_ws281x/HEAD/python/rpi_ws281x.i -------------------------------------------------------------------------------- /python/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardghirst/rpi_ws281x/HEAD/python/setup.py -------------------------------------------------------------------------------- /ws2811.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardghirst/rpi_ws281x/HEAD/ws2811.c -------------------------------------------------------------------------------- /ws2811.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardghirst/rpi_ws281x/HEAD/ws2811.h --------------------------------------------------------------------------------