Switch from 7.5kw vfd to 700W vfd

Already switched earlier, now optimized code and connection plan to work
best with new vfd (T130750W).
Previous 7.5kw vfd will work too without using all 7 speed levels as at
first.

connection plan: changed pin assignment (1 free pin)

Code:
  - vfd.cpp, main.cpp: remove not used D2 pin (only used with 7.5kw vfd)
  - config.hpp: change pin assignment
This commit is contained in:
jonny_ji7 2022-08-26 11:24:27 +02:00
parent c5438b6c4c
commit 9d416d29e6
6 changed files with 20 additions and 18 deletions

File diff suppressed because one or more lines are too long

Binary file not shown.

View File

@ -11,11 +11,11 @@ extern "C" {
//===================================
//4x stepper mosfet outputs for VFD
#define GPIO_VFD_FWD GPIO_NUM_4 //ST4
#define GPIO_VFD_D0 GPIO_NUM_16 //ST3
#define GPIO_VFD_D1 GPIO_NUM_2 //ST2
#define GPIO_VFD_D2 GPIO_NUM_15 //ST1
#define GPIO_VFD_REV GPIO_NUM_16 //ST3
#define GPIO_VFD_D0 GPIO_NUM_2 //ST2
#define GPIO_VFD_D1 GPIO_NUM_15 //ST1
//#define GPIO_VFD_D2 GPIO_NUM_15 //ST1 (D2 only used with 7.5kw vfd)
#define GPIO_VFD_REV GPIO_NUM_18 //mos1
#define GPIO_MOS2 GPIO_NUM_5 //mos2
#define GPIO_RELAY GPIO_NUM_13
#define GPIO_BUZZER GPIO_NUM_12

View File

@ -30,7 +30,7 @@ void init_gpios(){
gpio_configure_output(GPIO_VFD_FWD);
gpio_configure_output(GPIO_VFD_D0);
gpio_configure_output(GPIO_VFD_D1);
gpio_configure_output(GPIO_VFD_D2);
//gpio_configure_output(GPIO_VFD_D2); only used with 7.5kw vfd
//2x power mosfets
gpio_configure_output(GPIO_VFD_REV);
gpio_configure_output(GPIO_MOS2);

View File

@ -77,12 +77,13 @@ void vfd_setSpeedLevel(uint8_t levelNew){
//7 1 1 1 70
//limit to 7
if (level > 7) {
level = 7;
if (level > 3) {
level = 3;
}
//variables for logging the pin state
bool D0, D1, D2;
//bool D0, D1, D2;
bool D0, D1;
//set output state according to corresponding bit state
if CHECK_BIT(level, 0) {
@ -101,14 +102,15 @@ void vfd_setSpeedLevel(uint8_t levelNew){
gpio_set_level(GPIO_VFD_D1, 0);
}
if CHECK_BIT(level, 2) {
D2 = true;
gpio_set_level(GPIO_VFD_D2, 1);
} else {
D2 = false;
gpio_set_level(GPIO_VFD_D2, 0);
}
// if CHECK_BIT(level, 2) {
// D2 = true;
// gpio_set_level(GPIO_VFD_D2, 1);
// } else {
// D2 = false;
// gpio_set_level(GPIO_VFD_D2, 0);
// }
//log pin state
ESP_LOGI(TAG, " - pin state: D2=%i, D1=%i, D0=%i", (int)D2, (int)D1, (int)D0);
//ESP_LOGI(TAG, " - pin state: D2=%i, D1=%i, D0=%i", (int)D2, (int)D1, (int)D0);
ESP_LOGI(TAG, " - pin state: D1=%i, D0=%i", (int)D1, (int)D0);
}

View File

@ -19,5 +19,5 @@ 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 (1-7)
//function for setting the speed level (0-3)
void vfd_setSpeedLevel(uint8_t levelNew = 0);