vfd: extend vfd_setState function with direction enum (default fwd) main: reduce log output from buzzer task config: use mos1 as vfd_FWD output control: add MANUAL state: motor can be controlled via preset buttons adjust code slightly to support new state (also see updated function-diagram)
30 lines
579 B
C++
30 lines
579 B
C++
#pragma once
|
|
extern "C"
|
|
{
|
|
#include <stdio.h>
|
|
#include <freertos/FreeRTOS.h>
|
|
#include <freertos/task.h>
|
|
#include <esp_idf_version.h>
|
|
#include "freertos/queue.h"
|
|
#include "esp_system.h"
|
|
#include "esp_log.h"
|
|
#include "driver/adc.h"
|
|
|
|
#include <max7219.h>
|
|
#include "rotary_encoder.h"
|
|
}
|
|
#include <cmath>
|
|
|
|
#include "config.hpp"
|
|
#include "gpio_evaluateSwitch.hpp"
|
|
#include "buzzer.hpp"
|
|
#include "vfd.hpp"
|
|
|
|
|
|
|
|
typedef enum systemState_t {COUNTING, WINDING_START, WINDING, TARGET_REACHED, MANUAL} systemState_t;
|
|
extern const char* systemStateStr[5];
|
|
|
|
|
|
void task_control(void *pvParameter);
|