Using PID_V1 with Servo to Control Gas flow to a grill. Does STune work for non SSR fully proportional operation? #42
Replies: 1 comment
-
I thought I would take a stab at creating a new function called servoPwm that would be used in place of softPwm. Not sure I fully understand softPwm, so let me know what I got wrong. :-) `float sTune::servoPwm(Servo &myServo, float input, float output, float setpoint = 0, uint8_t debounce = 0) { // servo optimum position controller if (input > setpoint) reachedSetpoint = true; // PWM servo output // static bool servoStatus; |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I think the title states my question well. I am using an ESP32 along with a MAX6675 to control the temp in a gas grill by controlling the propane flow. I would like to use stune to get better PID values. Is it possible to use it where the output is a servo position, not relay timed values?
Thanks!
Beta Was this translation helpful? Give feedback.
All reactions