-
Archives
- June 2017
- November 2012
- September 2012
- July 2012
- June 2012
- April 2012
- March 2012
- January 2012
- December 2011
- October 2011
- September 2011
- August 2011
- July 2011
- June 2011
- May 2011
- April 2011
- September 2010
- August 2010
- July 2010
- March 2010
- November 2009
- October 2009
- September 2009
- August 2009
- July 2009
- June 2009
- May 2009
-
Meta
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
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
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
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
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
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
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
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
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
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