#pragma once extern "C" { #include #include #include #include #include "freertos/queue.h" #include "esp_system.h" #include "esp_log.h" #include "driver/adc.h" #include "rotary_encoder.h" #include "max7219.h" } #include #include "config.hpp" #include "gpio_evaluateSwitch.hpp" #include "gpio_adc.hpp" #include "buzzer.hpp" #include "vfd.hpp" #include "display.hpp" typedef enum systemState_t {COUNTING, WINDING_START, WINDING, TARGET_REACHED, MANUAL} systemState_t; extern const char* systemStateStr[5]; void task_control(void *pvParameter);