Tag Archives: PID

Improving the Beginner’s PID: On/Off

(This is Modification #5 in a larger series on writing a solid PID algorithm) The Problem As nice as it is to have a PID controller, sometimes you don’t care what it has to say. Let’s say at some point … Continue reading

Posted in Coding, PID | Tagged , , | 10 Comments

Improving the Beginner’s PID: Reset Windup

(This is Modification #4 in a larger series on writing a solid PID algorithm) The Problem Reset windup is a trap that probably claims more beginners than any other. It occurs when the PID thinks it can do something that … Continue reading

Posted in Coding, PID | Tagged , , | 13 Comments

Improving the Beginner’s PID: Tuning Changes

(This is Modification #3 in a larger series on writing a solid PID algorithm) The Problem The ability to change tuning parameters while the system is running is a must for any respectable PID algorithm. The Beginner’s PID acts a … Continue reading

Posted in Coding, PID | Tagged , , | 6 Comments

Improving the Beginner’s PID – Derivative Kick

(This is Modification #2 in a larger series on writing a solid PID algorithm) The Problem This modification is going to tweak the derivative term a bit. The goal is to eliminate a phenomenon known as “Derivative Kick”. The image … Continue reading

Posted in Coding, PID | Tagged , , | 9 Comments

Improving the Beginner’s PID – Sample Time

(This is Modification #1 in a larger series on writing a solid PID algorithm) The Problem The Beginner’s PID is designed to be called irregularly. This causes 2 issues: You don’t get consistent behavior from the PID, since sometimes it’s … Continue reading

Posted in Coding, PID | Tagged , , | 23 Comments

Improving the Beginner’s PID – Introduction

In conjunction with the release of the new Arduino PID Library I’ve decided to release this series of posts. The last library, while solid, didn’t really come with any code explanation. This time around the plan is to explain in … Continue reading

Posted in Coding, PID | Tagged , , | 59 Comments

PID Library ported to mbed

So the guys over at ARM took the arduino pid library and ported it for use with their mbed platform.  Nice little stroke to the ego there.  That’s not the main reason I’m excited though.   Because they’re a legit company,  … Continue reading

Posted in PID | Tagged | Comments Off on PID Library ported to mbed

PID Front-End v0.2

Some people spend the 4th of July relaxing with friends, drinking beer, enjoying some good weather. I… updated the pid front-end. I got several requests to add grid lines and axes, and now was the time. For those of you … Continue reading

Posted in Electronic, Front End | Tagged , | Leave a comment

Arduino Reflow Toaster

Pic 1: Arduino Controlled Toaster-Oven. No, I have not tried making toast with it The Mark 1 reflow toaster is complete! (“Mark 1” is another way of saying there’s a lot of work to be done.) It can hold +/- … Continue reading

Posted in Electronic, Mechanical | Tagged , , | 5 Comments

Graphical Front-End for the Arduino PID Library

The first (extreme beta) version of the PID Front-End is up on the pid library page. It makes adjusting an Arduino PID much, much easier. The download includes the processing sketch (of course.) It also has an Arduino sketch showing … Continue reading

Posted in Electronic, Front End | Tagged , | 7 Comments