Swap vfd data pins, Update connection plan

Tested new vfd functions, encoder and display - works as intended now
This commit is contained in:
jonny_ji7 2022-08-17 15:39:25 +02:00
parent 7fae539f14
commit b68dae7e59
5 changed files with 28 additions and 22 deletions

3
.gitignore vendored
View File

@ -4,3 +4,6 @@ build
# VIM files
*.swp
*.swo
# drawio files
*.bkp

File diff suppressed because one or more lines are too long

Binary file not shown.

View File

@ -7,6 +7,7 @@ static const char *TAG = "vfd";
void vfd_setState(bool state){
//turn motor on/off
if (state == true) {
gpio_set_level(GPIO_VFD_FWD, 1);
gpio_set_level(GPIO_RELAY, 1);
@ -20,32 +21,34 @@ void vfd_setState(bool state){
void vfd_setSpeedLevel(uint8_t level){
//set speed level of VFD
//bit:2 1 0
//lvl D2 D1 D0 Hz
//0 0 0 0 default
//1 0 0 1 1
//2 0 1 0 3
//3 0 1 1 9
//4 1 0 0 16
//5 1 0 1 25
//6 1 1 0 50
//7 1 1 1 70
//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);
D0 = true;
gpio_set_level(GPIO_VFD_D0, 1);
} else {
D2 = false;
gpio_set_level(GPIO_VFD_D2, 0);
D0 = false;
gpio_set_level(GPIO_VFD_D0, 0);
}
if CHECK_BIT(level, 1) {
@ -57,14 +60,14 @@ void vfd_setSpeedLevel(uint8_t level){
}
if CHECK_BIT(level, 2) {
D0 = true;
gpio_set_level(GPIO_VFD_D0, 1);
D2 = true;
gpio_set_level(GPIO_VFD_D2, 1);
} else {
D0 = false;
gpio_set_level(GPIO_VFD_D0, 0);
D2 = false;
gpio_set_level(GPIO_VFD_D2, 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);
ESP_LOGI(TAG, "pin state: D2=%i, D1=%i, D0=%i", (int)D2, (int)D1, (int)D0);
}

View File

@ -12,7 +12,7 @@ extern "C"
#include "config.hpp"
//function for setting the state (run or stop)
//function for setting the state (motor on/off)
void vfd_setState(bool state);
//function for setting the speed level (1-7)