├── .gitignore ├── README.md ├── circle.png ├── emulator_backend.py ├── neopixel_effects.py ├── neopixel_emulator.py ├── neopixel_gfx.py ├── neopixel_neomatrix.py ├── neopixel_viewer.py ├── pixel.py ├── requirements.txt ├── smiley_bmp_test.bmp ├── smiley_bmp_test.h ├── smiley_bmp_test_2.h └── ws2812b.png /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/having11/NeoPixel-Emulator/HEAD/README.md -------------------------------------------------------------------------------- /circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/having11/NeoPixel-Emulator/HEAD/circle.png -------------------------------------------------------------------------------- /emulator_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/having11/NeoPixel-Emulator/HEAD/emulator_backend.py -------------------------------------------------------------------------------- /neopixel_effects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/having11/NeoPixel-Emulator/HEAD/neopixel_effects.py -------------------------------------------------------------------------------- /neopixel_emulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/having11/NeoPixel-Emulator/HEAD/neopixel_emulator.py -------------------------------------------------------------------------------- /neopixel_gfx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/having11/NeoPixel-Emulator/HEAD/neopixel_gfx.py -------------------------------------------------------------------------------- /neopixel_neomatrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/having11/NeoPixel-Emulator/HEAD/neopixel_neomatrix.py -------------------------------------------------------------------------------- /neopixel_viewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/having11/NeoPixel-Emulator/HEAD/neopixel_viewer.py -------------------------------------------------------------------------------- /pixel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/having11/NeoPixel-Emulator/HEAD/pixel.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pyglet==1.5.26 -------------------------------------------------------------------------------- /smiley_bmp_test.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/having11/NeoPixel-Emulator/HEAD/smiley_bmp_test.bmp -------------------------------------------------------------------------------- /smiley_bmp_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/having11/NeoPixel-Emulator/HEAD/smiley_bmp_test.h -------------------------------------------------------------------------------- /smiley_bmp_test_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/having11/NeoPixel-Emulator/HEAD/smiley_bmp_test_2.h -------------------------------------------------------------------------------- /ws2812b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/having11/NeoPixel-Emulator/HEAD/ws2812b.png --------------------------------------------------------------------------------