├── .gitattributes ├── README.md └── WS281x_Strip ├── Libraries ├── MyGRBcolors.h └── MyRGBcolors.h ├── WS281x_Strip.ino ├── _define.ino ├── a_setup.ino ├── b_loop.ino ├── c_rgb_remote.ino ├── d_ani_1.ino └── z_colors.ino /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnobodyreally/Control-LED-strip-with-IR-Remote/HEAD/.gitattributes -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnobodyreally/Control-LED-strip-with-IR-Remote/HEAD/README.md -------------------------------------------------------------------------------- /WS281x_Strip/Libraries/MyGRBcolors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnobodyreally/Control-LED-strip-with-IR-Remote/HEAD/WS281x_Strip/Libraries/MyGRBcolors.h -------------------------------------------------------------------------------- /WS281x_Strip/Libraries/MyRGBcolors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnobodyreally/Control-LED-strip-with-IR-Remote/HEAD/WS281x_Strip/Libraries/MyRGBcolors.h -------------------------------------------------------------------------------- /WS281x_Strip/WS281x_Strip.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnobodyreally/Control-LED-strip-with-IR-Remote/HEAD/WS281x_Strip/WS281x_Strip.ino -------------------------------------------------------------------------------- /WS281x_Strip/_define.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnobodyreally/Control-LED-strip-with-IR-Remote/HEAD/WS281x_Strip/_define.ino -------------------------------------------------------------------------------- /WS281x_Strip/a_setup.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnobodyreally/Control-LED-strip-with-IR-Remote/HEAD/WS281x_Strip/a_setup.ino -------------------------------------------------------------------------------- /WS281x_Strip/b_loop.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnobodyreally/Control-LED-strip-with-IR-Remote/HEAD/WS281x_Strip/b_loop.ino -------------------------------------------------------------------------------- /WS281x_Strip/c_rgb_remote.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnobodyreally/Control-LED-strip-with-IR-Remote/HEAD/WS281x_Strip/c_rgb_remote.ino -------------------------------------------------------------------------------- /WS281x_Strip/d_ani_1.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnobodyreally/Control-LED-strip-with-IR-Remote/HEAD/WS281x_Strip/d_ani_1.ino -------------------------------------------------------------------------------- /WS281x_Strip/z_colors.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnobodyreally/Control-LED-strip-with-IR-Remote/HEAD/WS281x_Strip/z_colors.ino --------------------------------------------------------------------------------