- outsource global variables and objects - move from config.hpp to global.cpp / hpp - rename config.hpp, thus change all includes - re-arrange includes -> in source files instead of header - optimize / make function comment titles more consistent - optimize comments overall - add several temporary files to gitignore - fix unused variable compiler warnings
23 lines
628 B
C++
23 lines
628 B
C++
#pragma once
|
|
extern "C"
|
|
{
|
|
#include <stdio.h>
|
|
#include <freertos/FreeRTOS.h>
|
|
#include <freertos/task.h>
|
|
#include "freertos/queue.h"
|
|
#include "esp_system.h"
|
|
#include "esp_log.h"
|
|
}
|
|
|
|
|
|
//enum defining motor direction
|
|
typedef enum vfd_direction_t {FWD, REV} vfd_direction_t;
|
|
//strubg array to be able to log direction state as string
|
|
extern const char* vfd_directionStr[2];
|
|
|
|
//function for setting the state and optional direction of the motor: on/off, FWD/REV (default FWD)
|
|
void vfd_setState(bool stateNew, vfd_direction_t direction = FWD);
|
|
|
|
//function for setting the speed level (0-3)
|
|
void vfd_setSpeedLevel(uint8_t levelNew = 0);
|