cable-length-cutter/main/CMakeLists.txt
jonny_ji7 09ee67f583 Add code for demuxing 4 switch signals from adc pin
- create new files with code for demultiplexing the 4 switches from the
  one analog signal
- define lookup table with measurements done with the build pcb, test
  switches and esp32 breakout board
- add note do config that gpio used for digital in is now used for
  this multiplexer
- main.cpp: disable control task, run new handle function in a loop for
  testing
2022-09-11 19:58:13 +02:00

13 lines
222 B
CMake

idf_component_register(
SRCS
"main.cpp"
"config.cpp"
"control.cpp"
"buzzer.cpp"
"vfd.cpp"
"display.cpp"
"switchesAnalog.cpp"
INCLUDE_DIRS
"."
)