├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── components └── led_strip │ ├── component.mk │ ├── inc │ └── led_strip │ │ └── led_strip.h │ └── led_strip.c └── main ├── component.mk └── main.c /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | build/ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas-Bruder/ESP32_LED_STRIP/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas-Bruder/ESP32_LED_STRIP/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas-Bruder/ESP32_LED_STRIP/HEAD/README.md -------------------------------------------------------------------------------- /components/led_strip/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas-Bruder/ESP32_LED_STRIP/HEAD/components/led_strip/component.mk -------------------------------------------------------------------------------- /components/led_strip/inc/led_strip/led_strip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas-Bruder/ESP32_LED_STRIP/HEAD/components/led_strip/inc/led_strip/led_strip.h -------------------------------------------------------------------------------- /components/led_strip/led_strip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas-Bruder/ESP32_LED_STRIP/HEAD/components/led_strip/led_strip.c -------------------------------------------------------------------------------- /main/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas-Bruder/ESP32_LED_STRIP/HEAD/main/component.mk -------------------------------------------------------------------------------- /main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas-Bruder/ESP32_LED_STRIP/HEAD/main/main.c --------------------------------------------------------------------------------