Added functional menu using display and encoder: - a menu item is defined in one struct - scroll in a list of defined items - select option - modify value - save value, return to list Currently only menu is run (button and status display disabled) - Add menu.cpp/hpp - Add encoder.cpp/hpp mostly from previous test in board-control - display.cpp: only run new handleMenu() function - main.cpp: initialize encoder at startup, disable button task for testing
17 lines
325 B
CMake
17 lines
325 B
CMake
idf_component_register(
|
|
SRCS
|
|
"main.cpp"
|
|
"config.cpp"
|
|
"control.cpp"
|
|
"button.cpp"
|
|
"fan.cpp"
|
|
"auto.cpp"
|
|
"display.cpp"
|
|
"menu.cpp"
|
|
"encoder.cpp"
|
|
INCLUDE_DIRS
|
|
"."
|
|
)
|
|
|
|
spiffs_create_partition_image(spiffs ../../react-app/build FLASH_IN_PROJECT)
|