- Add functions that control the relays for adjusting the armchair position - Add function that controls the chair using joystick input
19 lines
332 B
CMake
19 lines
332 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"
|
|
"chairAdjust.cpp"
|
|
INCLUDE_DIRS
|
|
"."
|
|
PRIV_REQUIRES nvs_flash mdns json spiffs esp_http_server
|
|
)
|
|
|