armchair_fw/common/CMakeLists.txt
jonny_l480 69a421a924 Outsource speedsensor, Display: show speed
- move speedsensor files from motorctl pcb to common
- single pcb create and configure global speedsensor objects
- display: create fast slow veryslow loop
  - clear display every 30s
  - show speed in rpm and km/h
  NOTE: speedsensor needs fix, direction unreliable
2023-09-12 16:00:20 +02:00

18 lines
306 B
CMake

idf_component_register(
SRCS
"wifi.c"
"buzzer.cpp"
"uart_common.cpp"
"types.cpp"
"motordrivers.cpp"
"motorctl.cpp"
"currentsensor.cpp"
"joystick.cpp"
"http.cpp"
"speedsensor.cpp"
INCLUDE_DIRS
"."
PRIV_REQUIRES nvs_flash mdns json spiffs esp_http_server
)