i know the LED is ok and A9 is OK. what should I expect with the output?
#include <PID_v2.h>
int led = 13;
#define PIN_INPUT A9
#define PIN_OUTPUT 0
// Specify the links and initial tuning parameters
double Kp = 0, Ki = 0, Kd = 0;
PID_v2...
I have an error in my code, so i will make a standalone with a pot input with the temperature range and output to the Monitor of the PWM driver, I need to have it initialize to the PWM output of 45.5% with the temperature pot set to +5.
yes I had an integrator only, so I am now putting this code in. your timing is perfect.
before setup:
#include <PID_v2.h>//https://forum.pjrc.com/index.php?threads/pid-library-for-teensy-4-1.71153/
double Kp = 2.1, Ki = 20.5, Kd = 0...
I would like to use you Lib to implement a PID. I have a 500W Single Can Thermal Electric Soda Cooler. I have a PWM on the Teency 4.1 and I read the temperature of the water.
the red is the temperature of the diver, black is the temperature of...