<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-1638053300431497204</id><updated>2011-04-21T20:11:23.661-05:00</updated><category term='Projects'/><title type='text'>Wayne's Raging Reality</title><subtitle type='html'>This blog is a place for me to tell you all about my projects I'm working on or want to work on.  Hope you enjoy!</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://ragingreality.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1638053300431497204/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://ragingreality.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Wayne</name><uri>http://www.blogger.com/profile/14538237042639624837</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://www.ragingreality.com/pics/wayne.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>11</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-1638053300431497204.post-1431097566389154394</id><published>2009-05-13T10:25:00.006-05:00</published><updated>2009-05-13T11:14:59.016-05:00</updated><title type='text'>Twittering from the linux command line using curl</title><content type='html'>Recently I signed up for twitter and have found the need to "twit" from the command line.  I found a quick tutorial on how to use curl to send twitter updates here: &lt;a href="http://foxyurl.com/2CK"&gt;http://foxyurl.com/2CK&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;I've decided to extend it a little bit by adding some error checking.  I called the script "twit".  Here is the source code:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-family:courier new;"&gt;&lt;pre&gt;&lt;br /&gt;#!/bin/sh&lt;br /&gt;&lt;br /&gt;user="someuser"&lt;br /&gt;pass="somepass"&lt;br /&gt;curl="/usr/bin/curl"&lt;br /&gt;&lt;br /&gt;if [ ${#@} -gt 140 ]; then&lt;br /&gt;  echo "The update you are attempting to send is ${#@} characters long."&lt;br /&gt;  echo "Maximum update length is 140 characters.  Twitter update was not sent!"&lt;br /&gt;  exit 1&lt;br /&gt;fi&lt;br /&gt;&lt;br /&gt;$curl --basic --user "$user:$pass" --data-ascii \&lt;br /&gt;  "status=`echo $@ | tr ' ' '+'`" \&lt;br /&gt;  "http://twitter.com/statuses/update.json" &gt; /dev/null 2&gt;&amp;amp;1&lt;br /&gt;&lt;br /&gt;if [ $? -ne 0 ]; then&lt;br /&gt;  echo "Curl returned a non zero return code.  Failed sending twitter update!"&lt;br /&gt;  exit 1&lt;br /&gt;fi&lt;br /&gt;&lt;br /&gt;exit 0&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Nothing groundbreaking I know but it works as well enough.&lt;br /&gt;&lt;br /&gt;I would probably make sure that you are the only one who can read this script as it has your password in plain text.   To do this you can type:  "chmod 700 twit".&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1638053300431497204-1431097566389154394?l=ragingreality.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ragingreality.blogspot.com/feeds/1431097566389154394/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1638053300431497204&amp;postID=1431097566389154394' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1638053300431497204/posts/default/1431097566389154394'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1638053300431497204/posts/default/1431097566389154394'/><link rel='alternate' type='text/html' href='http://ragingreality.blogspot.com/2009/05/twittering-from-linux-command-line.html' title='Twittering from the linux command line using curl'/><author><name>Wayne</name><uri>http://www.blogger.com/profile/14538237042639624837</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://www.ragingreality.com/pics/wayne.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1638053300431497204.post-5572329608159059415</id><published>2008-11-04T09:28:00.008-06:00</published><updated>2008-11-05T09:34:56.166-06:00</updated><title type='text'>Arduino LED MIDI Controller</title><content type='html'>It's been a while since I've made a post so I have decided that it was about time I did.  This time I'll be talking about my Haunted House I made.&lt;br /&gt;&lt;br /&gt;I started with the idea to take a Halloween decoration (small haunted house) and add some LEDs to it and make them blink.  What I ended up with was a haunted house with 6 LEDs in it all controlled by MIDI.  I used an Arduino to receive MIDI signals from my computer and turn on/off LED lights based on those signals.&lt;br /&gt;&lt;br /&gt;Check out the video...&lt;br /&gt;&lt;br /&gt;&lt;a style="left: 0px ! important; top: 15px ! important;" title="Click here to block this object with Adblock Plus" class="abp-objtab-024225576646210611 visible ontop" href="http://www.youtube.com/v/hpOXUtALPek&amp;amp;hl=en&amp;amp;fs=1"&gt;&lt;/a&gt;&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/hpOXUtALPek&amp;amp;hl=en&amp;amp;fs=1"&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;embed src="http://www.youtube.com/v/hpOXUtALPek&amp;amp;hl=en&amp;amp;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;The "MIDI to Arduino Breakout Board" as I call it in the video I designed myself.  I used various resources on MIDI around the web and came up with this schematic.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_MzX2CoJ7_pw/SRG81UEmITI/AAAAAAAAAVU/5GJ9mwhKxY4/s1600-h/midi-schem.png"&gt;&lt;img style="cursor:pointer; cursor:hand;width: 320px; height: 189px;" src="http://3.bp.blogspot.com/_MzX2CoJ7_pw/SRG81UEmITI/AAAAAAAAAVU/5GJ9mwhKxY4/s320/midi-schem.png" border="0" alt=""id="BLOGGER_PHOTO_ID_5265197063479894322" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;Digikey Part list:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;2 x DIN5  - CP-2350-ND&lt;br /&gt;2 x 6N138 - 516-1600-5-ND&lt;br /&gt;1 x diode - 1N914B-ND&lt;br /&gt;2 x 220 ohm resistor&lt;br /&gt;1 x 270 ohm resistor&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;As you can see it isn't very complicated.  The hardest part was finding in DIN5 part numbers at Digikey.  The code on the other hand was a bit more complicated.  The trick was to decode the MIDI signals without any real debugging tools.  The RX/TX ports on the Arduino are being used by the MIDI ports.  I had to use blinky LED lights to do the debugging.  After fumbling around with it for a while I was able to get it working.  The code should easily be expendable to allow for more LED lights.  I chose to use the PWM pins on the Arduino so I could adjust the brightness of the LEDs.&lt;br /&gt;&lt;br /&gt;I tried to comment the code the best I could.  &lt;a href="http://www.ragingreality.com/~wprasek/midi_led.pde"&gt;Download it here&lt;/a&gt;.  Keep in mind that you must disconnect the MIDI breakout board before you program your Arduino or it wont work.  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;Side Node:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Unfortunately MIDI is meant for instruments and not lights so I wasn't able to really do what I wanted to do.  As a future project I would like to implement MIDI show control to allow for more light specific functions.  I still have to find a freeware program that supports MIDI show control.  I'll keep you posted.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1638053300431497204-5572329608159059415?l=ragingreality.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ragingreality.blogspot.com/feeds/5572329608159059415/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1638053300431497204&amp;postID=5572329608159059415' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1638053300431497204/posts/default/5572329608159059415'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1638053300431497204/posts/default/5572329608159059415'/><link rel='alternate' type='text/html' href='http://ragingreality.blogspot.com/2008/11/arduino-led-midi-controller.html' title='Arduino LED MIDI Controller'/><author><name>Wayne</name><uri>http://www.blogger.com/profile/14538237042639624837</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://www.ragingreality.com/pics/wayne.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_MzX2CoJ7_pw/SRG81UEmITI/AAAAAAAAAVU/5GJ9mwhKxY4/s72-c/midi-schem.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1638053300431497204.post-1178888113985628664</id><published>2008-01-07T18:19:00.001-06:00</published><updated>2008-06-22T21:12:06.487-05:00</updated><title type='text'>Ardunio and the SHT15</title><content type='html'>For my ongoing thermostat project I require some sort of temperature and humidity sensor.  Because I'm fairly new to all this I decided to get a 2 in 1 sensor from &lt;a href="http://www.robotshop.ca/"&gt;Robotshop&lt;/a&gt; called the &lt;a href="http://www.sensirion.com/en/01_humidity_sensors/03_humidity_sensor_sht15.htm"&gt;SHT15&lt;/a&gt;.  I went with the SHT15 because it had both a temperature and humidity sensor and uses a "digital 2-wire" interface.  When I first purchased it I didn't realize that "digital 2-wire" didn't mean I2C, but that's another story.&lt;br /&gt;&lt;br /&gt;In order to get the sensor to communicate with the Arduino I needed to write some custom code that manipulates the data and clock lines by pulling them high and low at the correct times.  I haven't had any experience doing this before so it was a learning experience for me.&lt;br /&gt;&lt;br /&gt;Connecting the SHT15 to the Arduino is pretty simple.  The data and sck lines each goto a digital input/output on the Arduino and the VCC goes to +5V.  Pretty simple.  Here is a picture of my breadboard.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_MzX2CoJ7_pw/R4LKNuRxehI/AAAAAAAAASc/l6GnLa844co/s1600-h/IMG_1036.JPG"&gt;&lt;img style="cursor: pointer;" src="http://4.bp.blogspot.com/_MzX2CoJ7_pw/R4LKNuRxehI/AAAAAAAAASc/l6GnLa844co/s320/IMG_1036.JPG" alt="" id="BLOGGER_PHOTO_ID_5152903260774955538" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;As you can see I had to solder on some breadboard wires onto the SHT15 breakout board.   It's been a while since I've soldered so it was good practice.  NOTE: You can decouple the power supply pings (VCC, GND) with a 100nF capacitor.&lt;br /&gt;&lt;br /&gt;Onto the code!  As I said before I used the &lt;a href="http://www.sensirion.com/pdf/product_information/Sample_Code_humidity_sensor_SHTxx.pdf"&gt;C source code&lt;/a&gt; from the website to help me with getting all the timing right.  After a few short hours of some frustration I was able to get it working.  One thing I didn't get working was outputting the actual temperature/humidity values in human readable form.  The numbers that the SHT15 returns require you to plug them into a formula before they will make sense to us.  The formulas can be found in the &lt;a href="http://www.sensirion.com/en/pdf/product_information/Data_Sheet_humidity_sensor_SHT1x_SHT7x_E.pdf"&gt;SHT15 datasheet&lt;/a&gt;.  There are a few functions that I have yet to implement such as the heater but it shouldn't be too difficult.&lt;br /&gt;&lt;br /&gt;Here is my source code: &lt;a href="http://www.ragingreality.com/%7Ewprasek/serial_temp_humidity.pde"&gt;serial_temp_humidity.pde&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Enjoy!  Feel free to ask me any questions.  I'm out.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1638053300431497204-1178888113985628664?l=ragingreality.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ragingreality.blogspot.com/feeds/1178888113985628664/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1638053300431497204&amp;postID=1178888113985628664' title='21 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1638053300431497204/posts/default/1178888113985628664'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1638053300431497204/posts/default/1178888113985628664'/><link rel='alternate' type='text/html' href='http://ragingreality.blogspot.com/2008/01/ardunio-and-sht15.html' title='Ardunio and the SHT15'/><author><name>Wayne</name><uri>http://www.blogger.com/profile/14538237042639624837</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://www.ragingreality.com/pics/wayne.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_MzX2CoJ7_pw/R4LKNuRxehI/AAAAAAAAASc/l6GnLa844co/s72-c/IMG_1036.JPG' height='72' width='72'/><thr:total>21</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1638053300431497204.post-1362718798076060534</id><published>2007-12-27T11:33:00.001-06:00</published><updated>2008-06-22T21:28:30.601-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Projects'/><title type='text'>First Ardunio Program</title><content type='html'>I have finally received my Arduino and have been able to write a few simple programs for it.  For my thermostat program I am interested in being able to read several analog sensors (temperature and humidity).  I also need to be able to poll specific sensor values from the computer using the serial interface so I can log their values in 5 minute intervals.   I don't have all the electronic components yet to build my thermostat so I wanted to write up some test sketches.  I based my sketches on a &lt;a href="http://todbot.com/blog/2006/12/06/arduino-serial-c-code-to-talk-to-arduino/"&gt;todbot blog entry&lt;/a&gt; that I found very useful.&lt;br /&gt;&lt;br /&gt;I was originally going to use the C code that todbot wrote to test communication with the Arduino but I soon realized the limitations.  What I ended up doing is using "screen" to open a terminal connection to the serial port so I could send and receive data to/from the Arduino.  In the future I will have to write a daemon that will run on my linux box that will constantly poll the Arduino for data but thats another story.  For now screen will work.&lt;br /&gt;&lt;br /&gt;Download &lt;a href="http://www.ragingreality.com/%7Ewprasek/serial_tty.pde"&gt;serial_tty.pde&lt;/a&gt; for the source code.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Using Screen&lt;span style="font-weight: bold;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;On my Mac all I had to type to communicate with my Arduino running the above sketch was:&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;&lt;span style="font-weight: bold;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;&lt;span style="font-size:85%;"&gt;screen /dev/cu.usbserial 9600&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;To "kill" your screen session you have to type: ctrl+a k&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Hope you enjoy.  I'm out.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1638053300431497204-1362718798076060534?l=ragingreality.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ragingreality.blogspot.com/feeds/1362718798076060534/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1638053300431497204&amp;postID=1362718798076060534' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1638053300431497204/posts/default/1362718798076060534'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1638053300431497204/posts/default/1362718798076060534'/><link rel='alternate' type='text/html' href='http://ragingreality.blogspot.com/2007/12/first-ardunio-program.html' title='First Ardunio Program'/><author><name>Wayne</name><uri>http://www.blogger.com/profile/14538237042639624837</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://www.ragingreality.com/pics/wayne.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1638053300431497204.post-3494565314469701049</id><published>2007-12-18T09:29:00.000-06:00</published><updated>2007-12-18T10:08:26.624-06:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Projects'/><title type='text'>Arduino shipped!</title><content type='html'>I love ordering things in the mail.  It's the waiting I don't like.  I ordered my Arduino along with a temperature/humidity sensor from &lt;a href="http://www.robotshop.ca/"&gt;Robotshop &lt;/a&gt;on Friday afternoon and they shipped it yesterday.  Not a bad turn around time at all.  According to the Canada Post website it is currently in Quebec somewhere.  Now all I have to do is wait for it.  I know it's a crazy time of year so we'll see how Canada Post is handling it.&lt;br /&gt;&lt;br /&gt;Now all I have to do is find some time to goto Active Electronics and buy a prototyping board and a bunch of misc parts.  I can't wait!&lt;br /&gt;&lt;br /&gt;I should go do some work...  I'm out.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1638053300431497204-3494565314469701049?l=ragingreality.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ragingreality.blogspot.com/feeds/3494565314469701049/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1638053300431497204&amp;postID=3494565314469701049' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1638053300431497204/posts/default/3494565314469701049'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1638053300431497204/posts/default/3494565314469701049'/><link rel='alternate' type='text/html' href='http://ragingreality.blogspot.com/2007/12/arduino-shipped.html' title='Arduino shipped!'/><author><name>Wayne</name><uri>http://www.blogger.com/profile/14538237042639624837</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://www.ragingreality.com/pics/wayne.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1638053300431497204.post-5325853291816834521</id><published>2007-12-12T12:08:00.000-06:00</published><updated>2007-12-13T00:26:16.867-06:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Projects'/><title type='text'>Thermostat project (take 2)</title><content type='html'>Yes I am still on the thermostat kick.  I just got my new humidifier installed today which is probably why I am still looking at my thermostat project.  After some consideration I have decided that I'm going to scrap the whole &lt;a href="http://www.gumstix.org/"&gt;gumstix&lt;/a&gt; idea.  The reason I'm doing this is simply because I don't need that much computing power bolted to my wall.  I've decided that the thermostat itself should be an &lt;a href="http://www.arduino.cc/"&gt;Arduino&lt;/a&gt; using &lt;a href="http://en.wikipedia.org/wiki/I2c"&gt;I2C&lt;/a&gt; to talk to a &lt;a href="http://www.robotshop.ca/home/products/robot-parts/sensors/temperature-sensors/sfe-sht15-humidity-temperature-sensor.html"&gt;Temperature and Humidity sensor&lt;/a&gt;.  Then I would have to design the circuit that would turn the furnace on and off.  I have found some good documentation of how a regular thermostat works so it shouldn't be much of an issue getting that going.  The Arduino would control the furnace and air conditioner, fan and humidifier.  One added feature (the whole point of the project) would be to use the USB interface on the Arduino to connect to a &lt;a href="http://en.wikipedia.org/wiki/LAMP_%28software_bundle%29"&gt;LAMP&lt;/a&gt; server that would log all temperature and humidity levels and send commands to the Arduino.  I just have to figure out how far the USB cable can actually be before I pursue this option any further.  I may have to use some other communication methods.&lt;br /&gt;&lt;br /&gt;I'm tired...   out.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1638053300431497204-5325853291816834521?l=ragingreality.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ragingreality.blogspot.com/feeds/5325853291816834521/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1638053300431497204&amp;postID=5325853291816834521' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1638053300431497204/posts/default/5325853291816834521'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1638053300431497204/posts/default/5325853291816834521'/><link rel='alternate' type='text/html' href='http://ragingreality.blogspot.com/2007/12/thermostat-project-take-2.html' title='Thermostat project (take 2)'/><author><name>Wayne</name><uri>http://www.blogger.com/profile/14538237042639624837</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://www.ragingreality.com/pics/wayne.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1638053300431497204.post-274365188004020664</id><published>2007-12-10T00:04:00.000-06:00</published><updated>2007-12-10T15:32:08.877-06:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Projects'/><title type='text'>Thermostat project</title><content type='html'>It's that time of year again.  Winter has hit full force here.  I've been on an Arduino kick lately and came up with an idea for a project to battle the cold weather.  A thermostat connected to your home network!!  Why would you want to do that you ask?  The answer is simple, I want to be able to control the temperature of my house from anywhere!  If security is a concern then you could limit control to your local network (but that's another discussion).&lt;br /&gt;&lt;br /&gt;Hardware:&lt;br /&gt;First you would start with a &lt;a href="http://gumstix.com/store/catalog/product_info.php?cPath=27&amp;amp;products_id=135"&gt;gumstix connex 200xm&lt;/a&gt;&lt;span style="text-decoration: underline;"&gt;&lt;/span&gt; along with a &lt;a href="http://gumstix.com/store/catalog/product_info.php?cPath=31&amp;amp;products_id=125"&gt;rs232 expansion board&lt;/a&gt; and an &lt;a href="http://gumstix.com/store/catalog/product_info.php?products_id=190"&gt;ethernet expansion board&lt;/a&gt; with a microSD interface for more storage.  You could also go WiFi if you so desire.  You will also need a &lt;a href="http://www.robotshop.ca/home/products/robot-parts/sensors/temperature-sensors/sfe-sht15-humidity-temperature-sensor.html"&gt;temperature and humidity sensor&lt;/a&gt; with a serial interface. &lt;br /&gt;&lt;br /&gt;Software:&lt;br /&gt;The software system would be as simple as running a LAMP (Linux, Apache, Mysql, PHP) server.  Of course I would have to develop some software to get the temperature readings from from the sensors and for controlling the furnace.  The Mysql server would be used to log temperature/humidity levels and when the furnace and AC are firing.  The Apache server would allow you to control the furnace remotely.  You could also automate the temperature in your house.  The possibilities are endless :)&lt;br /&gt;&lt;br /&gt;The major problem would be to somehow control the furnace/AC.  I have to figure out exactly how a furnace works yet before I can design that circuit.  I might have to re-think the hardware required and add a &lt;a href="http://gumstix.com/store/catalog/product_info.php?cPath=31&amp;amp;products_id=139"&gt;robostix&lt;/a&gt; to the mix.  We'll see.&lt;br /&gt;&lt;br /&gt;In the end you would have a completely automated thermostat for your house!  Perhaps you could also add X10 capabilities.  Very cool.&lt;br /&gt;&lt;br /&gt;Until next time.   I'm out.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1638053300431497204-274365188004020664?l=ragingreality.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ragingreality.blogspot.com/feeds/274365188004020664/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1638053300431497204&amp;postID=274365188004020664' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1638053300431497204/posts/default/274365188004020664'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1638053300431497204/posts/default/274365188004020664'/><link rel='alternate' type='text/html' href='http://ragingreality.blogspot.com/2007/12/thermostat-project.html' title='Thermostat project'/><author><name>Wayne</name><uri>http://www.blogger.com/profile/14538237042639624837</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://www.ragingreality.com/pics/wayne.jpg'/></author><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1638053300431497204.post-6583615569700977651</id><published>2007-12-03T13:37:00.000-06:00</published><updated>2007-12-03T15:08:24.967-06:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Projects'/><title type='text'>Audio Projects</title><content type='html'>My last post had to do with making a robot that made parts for itself.  It's time to shift gears and talk about making audio components.  I've always wanted to put together a guitar amplifier from scratch but I've never been able to find a really good explanation on how to do it until I found &lt;a href="http://www.joepopp.net/jcm8002.htm"&gt;this &lt;/a&gt;website.  It's a fairly comprehensive look at how to build a JCM800 head.   If you've ever been interested in putting together your own tube amplifier it's a great place to start.   He has a lot of great ideas and insightful things to say about building tube amps.&lt;br /&gt;&lt;br /&gt;What about effects?  I found a really nice website online with a bunch of information on building your own effect pedals.  It's called &lt;a href="http://www.super-freq.com/"&gt;Super-Freq&lt;/a&gt;.   He has a bunch of schematics and circuit board layouts on there.  Check it out for yourself.  I'm sure there are other websites out there with effect pedal layouts.  Let me know if you find any!&lt;br /&gt;&lt;br /&gt;While I was writing this post I also stumbled across &lt;a href="http://www.geofex.com/"&gt;Geofex &lt;/a&gt;website.  They also have a bunch of information and links for good places to start looking for information on building tube amplifiers and effects.&lt;br /&gt;&lt;br /&gt;That's it for now.  I'm out.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1638053300431497204-6583615569700977651?l=ragingreality.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ragingreality.blogspot.com/feeds/6583615569700977651/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1638053300431497204&amp;postID=6583615569700977651' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1638053300431497204/posts/default/6583615569700977651'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1638053300431497204/posts/default/6583615569700977651'/><link rel='alternate' type='text/html' href='http://ragingreality.blogspot.com/2007/12/audio-projects.html' title='Audio Projects'/><author><name>Wayne</name><uri>http://www.blogger.com/profile/14538237042639624837</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://www.ragingreality.com/pics/wayne.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1638053300431497204.post-1411342321546550571</id><published>2007-11-30T14:07:00.000-06:00</published><updated>2007-12-03T15:08:24.967-06:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Projects'/><title type='text'>Reprap part 2</title><content type='html'>I'm back...  with the second post about the Reprap robot.  I did warn you that this blog would be full of geeky things didn't I?  They actually renamed the Reprap robot to Repstrap.  You can check out part 2 &lt;a href="http://blog.makezine.com/archive/2007/11/make_a_repstrap_part_2_we.html?CMP=OTC-0D6B48984890"&gt;here&lt;/a&gt;.  &lt;br /&gt;&lt;br /&gt;It truly is an amazing idea.  The mechanics and electronics that go behind these robots have always baffled me.  Even now when you watch the video it looks really complicated.  At work I take care of and administer something very similar to this robot called a tape silo (IBM 3584).  It operates on the same principle as the Repstrap robot does.  There is a robot arm that moves along an X and Y axis to move tapes around.  The difference is the Repstrap robot is a 3 axis robot.  When you look at the tape silo the mechanics behind it are actually quite simple.  A rail for the X axis and a screw for the Y axis. &lt;br /&gt;&lt;br /&gt;The more research I do on these type of robots the more I realize what a simple concept they really are.  Whats really cool is you can use the same concept as the Repstrap robot to make a 3 axis &lt;a href="http://www.instructables.com/id/Easy-to-Build-Desk-Top-3-Axis-CNC-Milling-Machine/"&gt;milling machine&lt;/a&gt; or &lt;a href="http://buildyourcnc.com"&gt;CNC Router&lt;/a&gt;.  I might in fact build one of these things one day.  I just need to somehow find some more time.  Right now I have too many other projects on the go.  Don't worry, I'll talk about them in my blog sometime in the future.&lt;br /&gt;&lt;br /&gt;That's enough for now.  I'm out.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1638053300431497204-1411342321546550571?l=ragingreality.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ragingreality.blogspot.com/feeds/1411342321546550571/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1638053300431497204&amp;postID=1411342321546550571' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1638053300431497204/posts/default/1411342321546550571'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1638053300431497204/posts/default/1411342321546550571'/><link rel='alternate' type='text/html' href='http://ragingreality.blogspot.com/2007/11/reprap-part-2.html' title='Reprap part 2'/><author><name>Wayne</name><uri>http://www.blogger.com/profile/14538237042639624837</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://www.ragingreality.com/pics/wayne.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1638053300431497204.post-7895521288719436363</id><published>2007-11-27T13:42:00.000-06:00</published><updated>2007-12-03T15:08:24.967-06:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Projects'/><title type='text'>Standard boring post...  with a twist!</title><content type='html'>I've been waiting for something interesting to post but have found out that I don't really have anything interesting to really say.  I've been reading Ali's blog and I have to say that I'm rolling on the floor laughing every time he posts something new.  Ali's blog is great for people who know the guy.  I'm not sure how people who don't know him would react to reading it.  But, I'm digressing.  My point is that Ali always has something to say.  I on the other hand do not.  Judging by this post I have probably bored all one of you to tears sooo from now on I'm going to post cool things.&lt;br /&gt;&lt;br /&gt;Cool things (and probably geeky) things like &lt;a href="http://www.makezine.com/blog/archive/2007/11/make_a_reprap_robot_part.html?CMP=OTC-0D6B48984890"&gt;Making a Reprap Robot&lt;/a&gt;.  What is a Reprap robot you ask?  Simply put it is a self-replicating rapid-prototyping robot!  Okay maybe not so self-replicating but the whole point of the robot is able to make it's own parts.  Cool huh?  Go check it out.  I'm really thinking about building one.  Oh so many projects... so little time.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1638053300431497204-7895521288719436363?l=ragingreality.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ragingreality.blogspot.com/feeds/7895521288719436363/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1638053300431497204&amp;postID=7895521288719436363' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1638053300431497204/posts/default/7895521288719436363'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1638053300431497204/posts/default/7895521288719436363'/><link rel='alternate' type='text/html' href='http://ragingreality.blogspot.com/2007/11/standard-boring-post-with-twist.html' title='Standard boring post...  with a twist!'/><author><name>Wayne</name><uri>http://www.blogger.com/profile/14538237042639624837</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://www.ragingreality.com/pics/wayne.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1638053300431497204.post-259766688942157297</id><published>2007-11-02T11:01:00.000-05:00</published><updated>2007-11-02T12:04:06.034-05:00</updated><title type='text'>I dont know</title><content type='html'>Yeah, I dont know what to say.  This is my first post.....  SO yeah..  take that.&lt;br /&gt;&lt;br /&gt;Peace to your hommies.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1638053300431497204-259766688942157297?l=ragingreality.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ragingreality.blogspot.com/feeds/259766688942157297/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1638053300431497204&amp;postID=259766688942157297' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1638053300431497204/posts/default/259766688942157297'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1638053300431497204/posts/default/259766688942157297'/><link rel='alternate' type='text/html' href='http://ragingreality.blogspot.com/2007/11/i-dont-know.html' title='I dont know'/><author><name>Wayne</name><uri>http://www.blogger.com/profile/14538237042639624837</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://www.ragingreality.com/pics/wayne.jpg'/></author><thr:total>3</thr:total></entry></feed>
