Add vfd.cpp/hpp with functions to control the VFD via 4 digital pins Add way to test the vfd via SET button (rotate speed level) and START button (toggle motor on/off)
20 lines
370 B
C++
20 lines
370 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"
|
|
}
|
|
|
|
#include "config.hpp"
|
|
|
|
|
|
//function for setting the state (run or stop)
|
|
void vfd_setState(bool state);
|
|
|
|
//function for setting the speed level (1-7)
|
|
void vfd_setSpeedLevel(uint8_t level = 0);
|