Add vfd driver, Add vfd test via buttons

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)
This commit is contained in:
jonny_ji7 2022-08-17 14:03:15 +02:00
parent 22f8aef8d2
commit 7fae539f14
5 changed files with 112 additions and 4 deletions

View File

@ -4,6 +4,7 @@ idf_component_register(
"config.cpp"
"control.cpp"
"buzzer.cpp"
"vfd.cpp"
INCLUDE_DIRS
"."
)

View File

@ -110,6 +110,7 @@ rotary_encoder_info_t encoder; //encoder device/info
uint8_t count = 0; //count for testing
uint32_t timestamp_pageSwitched = 0;
bool page = false; //store page number currently displayed
bool state = false; //store state of motor
@ -153,16 +154,32 @@ void task_control(void *pvParameter)
display_current_distance(&display, &encoder);
} else {
//display counter
sprintf(display_buf, "cnt: %02d", count);
sprintf(display_buf, "lvl: %02d", count);
max7219_draw_text_7seg(&display, 0, display_buf);
count++;
//count++;
}
//test button
if(SW_START.risingEdge){
//testing: rotate through speed levels
if(SW_SET.risingEdge){
//rotate count 0-7
if (count >= 7){
count = 0;
} else {
count ++;
}
//set motor level
vfd_setSpeedLevel(count);
buzzer.beep(1, 100, 100);
}
//testing: toggle motor state
if(SW_START.risingEdge){
state = !state;
vfd_setState(state);
buzzer.beep(1, 500, 100);
}
}
}

View File

@ -16,6 +16,7 @@ extern "C"
#include "config.hpp"
#include "gpio_evaluateSwitch.hpp"
#include "buzzer.hpp"
#include "vfd.hpp"

70
main/vfd.cpp Normal file
View File

@ -0,0 +1,70 @@
#include "vfd.hpp"
#define CHECK_BIT(var,pos) (((var)>>(pos)) & 1)
static const char *TAG = "vfd";
void vfd_setState(bool state){
if (state == true) {
gpio_set_level(GPIO_VFD_FWD, 1);
gpio_set_level(GPIO_RELAY, 1);
} else {
gpio_set_level(GPIO_VFD_FWD, 0);
gpio_set_level(GPIO_RELAY, 0);
}
ESP_LOGI(TAG, "set state to %i", (int)state);
}
void vfd_setSpeedLevel(uint8_t level){
//limit to 7
if (level > 7) {
level = 7;
}
//bit:2 1 0
//lvl D0 D1 D2
//0 0 0 0
//1 0 0 1
//2 0 1 0
//3 0 1 1
//4 1 0 0
//5 1 0 1
//6 1 1 0
//7 1 1 1
//variables for logging the pin state
bool D0, D1, D2;
//set output state according to corresponding bit state
if CHECK_BIT(level, 0) {
D2 = true;
gpio_set_level(GPIO_VFD_D2, 1);
} else {
D2 = false;
gpio_set_level(GPIO_VFD_D2, 0);
}
if CHECK_BIT(level, 1) {
D1 = true;
gpio_set_level(GPIO_VFD_D1, 1);
} else {
D1 = false;
gpio_set_level(GPIO_VFD_D1, 0);
}
if CHECK_BIT(level, 2) {
D0 = true;
gpio_set_level(GPIO_VFD_D0, 1);
} else {
D0 = false;
gpio_set_level(GPIO_VFD_D0, 0);
}
//log
ESP_LOGI(TAG, "Set level to %d", level);
ESP_LOGI(TAG, "pin state: D0=%i, D1=%i, D2=%i", (int)D0, (int)D1, (int)D2);
}

19
main/vfd.hpp Normal file
View File

@ -0,0 +1,19 @@
#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);