Add all logic for the machine to control.cpp optimize logging (on change only) for vfd functions
20 lines
377 B
C++
20 lines
377 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 (motor on/off)
|
|
void vfd_setState(bool stateNew);
|
|
|
|
//function for setting the speed level (1-7)
|
|
void vfd_setSpeedLevel(uint8_t levelNew = 0);
|