diff options
author | Josh Rahm <joshuarahm@gmail.com> | 2022-12-01 21:29:34 -0700 |
---|---|---|
committer | Josh Rahm <joshuarahm@gmail.com> | 2022-12-01 21:29:34 -0700 |
commit | 05e3f6bb7293c771629c7b3599392c8f335e7dd8 (patch) | |
tree | c2a5cd4d27d7673b3a58071c0656f87c92ee9ff3 /main/drv | |
parent | 8d379bf60e50960f6c855cd6b9c83956a082f73d (diff) | |
download | esp32-ws2812b-05e3f6bb7293c771629c7b3599392c8f335e7dd8.tar.gz esp32-ws2812b-05e3f6bb7293c771629c7b3599392c8f335e7dd8.tar.bz2 esp32-ws2812b-05e3f6bb7293c771629c7b3599392c8f335e7dd8.zip |
Add an HTTP Server.
This server allows the user to control the parameters of the state for
displaying the lights.
Diffstat (limited to 'main/drv')
-rw-r--r-- | main/drv/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/main/drv/CMakeLists.txt b/main/drv/CMakeLists.txt index b56f1b0..3d9018f 100644 --- a/main/drv/CMakeLists.txt +++ b/main/drv/CMakeLists.txt @@ -1,2 +1,3 @@ idf_component_register(SRCS "ws2812b.c" + REQUIRES driver INCLUDE_DIRS "../../include") |