├── .gitmodules ├── LICENSE ├── Makefile ├── README.md ├── image.elf-0x00000.bin ├── image.elf-0x40000.bin ├── user.cfg ├── user ├── custom_commands.c ├── pattern.c ├── pattern.h ├── pin_mux_register.h ├── slc_register.h ├── user_main.c ├── vars.h ├── ws2812_i2s.c └── ws2812_i2s.h ├── web ├── Makefile ├── execute_reflash.c ├── md5.c ├── md5.h ├── mfsmaker.c ├── page │ ├── index.html │ ├── jquery-2.1.4.min.js.gz │ ├── main.js │ └── menuinterface.js └── pushtodev.c └── wsend ├── Makefile ├── README.md └── wsend.c /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp8266ws2812i2s/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | esp82xx/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp8266ws2812i2s/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp8266ws2812i2s/HEAD/README.md -------------------------------------------------------------------------------- /image.elf-0x00000.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp8266ws2812i2s/HEAD/image.elf-0x00000.bin -------------------------------------------------------------------------------- /image.elf-0x40000.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp8266ws2812i2s/HEAD/image.elf-0x40000.bin -------------------------------------------------------------------------------- /user.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp8266ws2812i2s/HEAD/user.cfg -------------------------------------------------------------------------------- /user/custom_commands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp8266ws2812i2s/HEAD/user/custom_commands.c -------------------------------------------------------------------------------- /user/pattern.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp8266ws2812i2s/HEAD/user/pattern.c -------------------------------------------------------------------------------- /user/pattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp8266ws2812i2s/HEAD/user/pattern.h -------------------------------------------------------------------------------- /user/pin_mux_register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp8266ws2812i2s/HEAD/user/pin_mux_register.h -------------------------------------------------------------------------------- /user/slc_register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp8266ws2812i2s/HEAD/user/slc_register.h -------------------------------------------------------------------------------- /user/user_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp8266ws2812i2s/HEAD/user/user_main.c -------------------------------------------------------------------------------- /user/vars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp8266ws2812i2s/HEAD/user/vars.h -------------------------------------------------------------------------------- /user/ws2812_i2s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp8266ws2812i2s/HEAD/user/ws2812_i2s.c -------------------------------------------------------------------------------- /user/ws2812_i2s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp8266ws2812i2s/HEAD/user/ws2812_i2s.h -------------------------------------------------------------------------------- /web/Makefile: -------------------------------------------------------------------------------- 1 | ../esp82xx/web/Makefile -------------------------------------------------------------------------------- /web/execute_reflash.c: -------------------------------------------------------------------------------- 1 | ../esp82xx/web/execute_reflash.c -------------------------------------------------------------------------------- /web/md5.c: -------------------------------------------------------------------------------- 1 | ../esp82xx/web/md5.c -------------------------------------------------------------------------------- /web/md5.h: -------------------------------------------------------------------------------- 1 | ../esp82xx/web/md5.h -------------------------------------------------------------------------------- /web/mfsmaker.c: -------------------------------------------------------------------------------- 1 | ../esp82xx/web/mfsmaker.c -------------------------------------------------------------------------------- /web/page/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp8266ws2812i2s/HEAD/web/page/index.html -------------------------------------------------------------------------------- /web/page/jquery-2.1.4.min.js.gz: -------------------------------------------------------------------------------- 1 | ../../esp82xx/web/page/jquery-2.1.4.min.js.gz -------------------------------------------------------------------------------- /web/page/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp8266ws2812i2s/HEAD/web/page/main.js -------------------------------------------------------------------------------- /web/page/menuinterface.js: -------------------------------------------------------------------------------- 1 | ../../esp82xx/web/page/menuinterface.js -------------------------------------------------------------------------------- /web/pushtodev.c: -------------------------------------------------------------------------------- 1 | ../esp82xx/web/pushtodev.c -------------------------------------------------------------------------------- /wsend/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp8266ws2812i2s/HEAD/wsend/Makefile -------------------------------------------------------------------------------- /wsend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp8266ws2812i2s/HEAD/wsend/README.md -------------------------------------------------------------------------------- /wsend/wsend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp8266ws2812i2s/HEAD/wsend/wsend.c --------------------------------------------------------------------------------