The Bird is the Word on Family Guy

November 24, 2008

This is from one of the latest Family Guy episodes. I laughed my ass off the whole episode, it was great! “Sir, our math shows that the Bird is equal to or greater than the word”. Watch on YouTubevar bU=’http://www.getbugged.com/wp-content/plugins/wp-youtube-lyte/lyte/’;pW=’425′;pH=’344′;(function(){d=document;if(!document.getElementById(‘lytescr’)){lyte=d.createElement(‘script’);lyte.async=true;lyte.id=’lytescr’;lyte.src=’http://www.getbugged.com/wp-content/plugins/wp-youtube-lyte/lyte/lyte-min.js’;d.getElementsByTagName(‘head’)[0].appendChild(lyte)}})();

0

How to Serial.print a Double on an Arduino

November 22, 2008

I found the following code on the Arduino forums and decided to post it here for future reference. It allows you to print a double/float to the serial port.  You’ll need to edit the last line if you didn’t want a carriage return after the value is printed.  It works a treat. void printDouble(double val, [...]

0