Buck with PID controlled output voltage
A voltage mode buck converter regulates voltage by comparing the output voltage to a reference voltage. It adjusts the duty cycle of its switching signal to keep the output voltage stable. This type of converter efficiently steps down voltage levels, making it useful in various electronic devices like phone battery charger.
This example will implement a voltage mode buck converter to control the output.
Hardware setup and requirement
You will need : - 1 TWIST - A dc power supply (20-60V) - A resistor (or a dc electronic load)
Software setup
We import control_pid library with src/owntech.ini via the line :
We can use this library to initialize a PID control with the function :
the initial parameters are :
static float32_t kp = 0.000215;
static float32_t ki = 2.86;
static float32_t kd = 0.0;
static uint32_t control_task_period = 100;
Expected result
This code will control the output voltage to have 15V, you can control the output voltage with the serial monitor :
- press
u
to increase the voltage - press
d
to decrease the voltage