cable-length-cutter/main/CMakeLists.txt
jonny_ji7 5dd392586d Outsource encoder code to encoder.cpp
To be able to use the encoder in future stepper task as well
- make certain variables global
- initialize encoder in main
- outsorce encoder functions in encoder.cpp / h
- adjust config
2023-03-01 00:09:29 +01:00

16 lines
293 B
CMake

idf_component_register(
SRCS
"main.cpp"
"config.cpp"
"control.cpp"
"buzzer.cpp"
"vfd.cpp"
"display.cpp"
"cutter.cpp"
"switchesAnalog.cpp"
"guide-stepper.cpp"
"encoder.cpp"
INCLUDE_DIRS
"."
)