├── .gitignore ├── .npmignore ├── README.md ├── binding.gyp ├── examples ├── basic.js ├── colors.js ├── fill-with-color.js ├── pixel-mapping.js ├── rainbow-x.js ├── rainbow.js ├── running-pixel.js ├── test.js └── white-test.js ├── index.js ├── makefile ├── package.json └── src ├── .DS_Store ├── Backup ├── addon copy.cpp ├── addon.cpp └── addon.h ├── addon.cpp ├── addon.h └── rpi_ws281x ├── .gitignore ├── CMakeLists.txt ├── DEBIAN ├── control ├── postinst ├── postrm └── prerm ├── LICENSE ├── README.md ├── SConscript ├── SConstruct ├── clk.h ├── dma.c ├── dma.h ├── gpio.h ├── linux.py ├── mailbox.c ├── mailbox.h ├── main.c ├── pcm.c ├── pcm.h ├── pkg-config.pc.in ├── pwm.c ├── pwm.h ├── rpihw.c ├── rpihw.h ├── version ├── version.h.in ├── version.py ├── ws2811.c └── ws2811.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meg768/rpi-ws281x/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | build -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meg768/rpi-ws281x/HEAD/README.md -------------------------------------------------------------------------------- /binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meg768/rpi-ws281x/HEAD/binding.gyp -------------------------------------------------------------------------------- /examples/basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meg768/rpi-ws281x/HEAD/examples/basic.js -------------------------------------------------------------------------------- /examples/colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meg768/rpi-ws281x/HEAD/examples/colors.js -------------------------------------------------------------------------------- /examples/fill-with-color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meg768/rpi-ws281x/HEAD/examples/fill-with-color.js -------------------------------------------------------------------------------- /examples/pixel-mapping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meg768/rpi-ws281x/HEAD/examples/pixel-mapping.js -------------------------------------------------------------------------------- /examples/rainbow-x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meg768/rpi-ws281x/HEAD/examples/rainbow-x.js -------------------------------------------------------------------------------- /examples/rainbow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meg768/rpi-ws281x/HEAD/examples/rainbow.js -------------------------------------------------------------------------------- /examples/running-pixel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meg768/rpi-ws281x/HEAD/examples/running-pixel.js -------------------------------------------------------------------------------- /examples/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meg768/rpi-ws281x/HEAD/examples/test.js -------------------------------------------------------------------------------- /examples/white-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meg768/rpi-ws281x/HEAD/examples/white-test.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meg768/rpi-ws281x/HEAD/index.js -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meg768/rpi-ws281x/HEAD/makefile -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meg768/rpi-ws281x/HEAD/package.json -------------------------------------------------------------------------------- /src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meg768/rpi-ws281x/HEAD/src/.DS_Store -------------------------------------------------------------------------------- /src/Backup/addon copy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meg768/rpi-ws281x/HEAD/src/Backup/addon copy.cpp -------------------------------------------------------------------------------- /src/Backup/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meg768/rpi-ws281x/HEAD/src/Backup/addon.cpp -------------------------------------------------------------------------------- /src/Backup/addon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meg768/rpi-ws281x/HEAD/src/Backup/addon.h -------------------------------------------------------------------------------- /src/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meg768/rpi-ws281x/HEAD/src/addon.cpp -------------------------------------------------------------------------------- /src/addon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meg768/rpi-ws281x/HEAD/src/addon.h -------------------------------------------------------------------------------- /src/rpi_ws281x/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meg768/rpi-ws281x/HEAD/src/rpi_ws281x/.gitignore -------------------------------------------------------------------------------- /src/rpi_ws281x/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meg768/rpi-ws281x/HEAD/src/rpi_ws281x/CMakeLists.txt -------------------------------------------------------------------------------- /src/rpi_ws281x/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meg768/rpi-ws281x/HEAD/src/rpi_ws281x/DEBIAN/control -------------------------------------------------------------------------------- /src/rpi_ws281x/DEBIAN/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meg768/rpi-ws281x/HEAD/src/rpi_ws281x/DEBIAN/postinst -------------------------------------------------------------------------------- /src/rpi_ws281x/DEBIAN/postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meg768/rpi-ws281x/HEAD/src/rpi_ws281x/DEBIAN/postrm -------------------------------------------------------------------------------- /src/rpi_ws281x/DEBIAN/prerm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meg768/rpi-ws281x/HEAD/src/rpi_ws281x/DEBIAN/prerm -------------------------------------------------------------------------------- /src/rpi_ws281x/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meg768/rpi-ws281x/HEAD/src/rpi_ws281x/LICENSE -------------------------------------------------------------------------------- /src/rpi_ws281x/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meg768/rpi-ws281x/HEAD/src/rpi_ws281x/README.md -------------------------------------------------------------------------------- /src/rpi_ws281x/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meg768/rpi-ws281x/HEAD/src/rpi_ws281x/SConscript -------------------------------------------------------------------------------- /src/rpi_ws281x/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meg768/rpi-ws281x/HEAD/src/rpi_ws281x/SConstruct -------------------------------------------------------------------------------- /src/rpi_ws281x/clk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meg768/rpi-ws281x/HEAD/src/rpi_ws281x/clk.h -------------------------------------------------------------------------------- /src/rpi_ws281x/dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meg768/rpi-ws281x/HEAD/src/rpi_ws281x/dma.c -------------------------------------------------------------------------------- /src/rpi_ws281x/dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meg768/rpi-ws281x/HEAD/src/rpi_ws281x/dma.h -------------------------------------------------------------------------------- /src/rpi_ws281x/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meg768/rpi-ws281x/HEAD/src/rpi_ws281x/gpio.h -------------------------------------------------------------------------------- /src/rpi_ws281x/linux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meg768/rpi-ws281x/HEAD/src/rpi_ws281x/linux.py -------------------------------------------------------------------------------- /src/rpi_ws281x/mailbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meg768/rpi-ws281x/HEAD/src/rpi_ws281x/mailbox.c -------------------------------------------------------------------------------- /src/rpi_ws281x/mailbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meg768/rpi-ws281x/HEAD/src/rpi_ws281x/mailbox.h -------------------------------------------------------------------------------- /src/rpi_ws281x/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meg768/rpi-ws281x/HEAD/src/rpi_ws281x/main.c -------------------------------------------------------------------------------- /src/rpi_ws281x/pcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meg768/rpi-ws281x/HEAD/src/rpi_ws281x/pcm.c -------------------------------------------------------------------------------- /src/rpi_ws281x/pcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meg768/rpi-ws281x/HEAD/src/rpi_ws281x/pcm.h -------------------------------------------------------------------------------- /src/rpi_ws281x/pkg-config.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meg768/rpi-ws281x/HEAD/src/rpi_ws281x/pkg-config.pc.in -------------------------------------------------------------------------------- /src/rpi_ws281x/pwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meg768/rpi-ws281x/HEAD/src/rpi_ws281x/pwm.c -------------------------------------------------------------------------------- /src/rpi_ws281x/pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meg768/rpi-ws281x/HEAD/src/rpi_ws281x/pwm.h -------------------------------------------------------------------------------- /src/rpi_ws281x/rpihw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meg768/rpi-ws281x/HEAD/src/rpi_ws281x/rpihw.c -------------------------------------------------------------------------------- /src/rpi_ws281x/rpihw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meg768/rpi-ws281x/HEAD/src/rpi_ws281x/rpihw.h -------------------------------------------------------------------------------- /src/rpi_ws281x/version: -------------------------------------------------------------------------------- 1 | 1.1.0 2 | -------------------------------------------------------------------------------- /src/rpi_ws281x/version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meg768/rpi-ws281x/HEAD/src/rpi_ws281x/version.h.in -------------------------------------------------------------------------------- /src/rpi_ws281x/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meg768/rpi-ws281x/HEAD/src/rpi_ws281x/version.py -------------------------------------------------------------------------------- /src/rpi_ws281x/ws2811.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meg768/rpi-ws281x/HEAD/src/rpi_ws281x/ws2811.c -------------------------------------------------------------------------------- /src/rpi_ws281x/ws2811.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meg768/rpi-ws281x/HEAD/src/rpi_ws281x/ws2811.h --------------------------------------------------------------------------------