new idf project (with idf.py create-project) add 2 components for encoder and display: https://github.com/DavidAntliff/esp32-rotary-encoder https://github.com/UncleRus/esp-idf-lib/tree/master/components/max7219 add code for testing a 7 segment display
6 lines
170 B
CMake
6 lines
170 B
CMake
#idf_component_register(SRCS "rotary_encoder.c" INCLUDE_DIRS include)
|
|
|
|
set(COMPONENT_ADD_INCLUDEDIRS include)
|
|
set(COMPONENT_SRCS "rotary_encoder.c")
|
|
register_component()
|