<?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-6148475283638377913</id><updated>2011-08-02T19:11:59.758-07:00</updated><title type='text'>Adventures in Technology</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://scottzumwalt.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6148475283638377913/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://scottzumwalt.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Scott Zumwalt</name><uri>http://www.blogger.com/profile/16592128307188200380</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://bp1.blogger.com/_4aP55hkI4n4/SF5iSi7fLRI/AAAAAAAAABQ/Md1fubIc8qM/S220/SuperScottIcon.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>4</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-6148475283638377913.post-2906599119232745004</id><published>2008-12-30T09:34:00.000-08:00</published><updated>2008-12-30T10:00:30.740-08:00</updated><title type='text'>Network connections in (K)ubuntu</title><content type='html'>The network connection software for ubuntu and kubuntu is terrible. I have recently run into the problem of it failing to connect or connecting for only a few minutes. I would then have to reboot for it to connect again. I've found that lots of people have this problem on various hardware. The solution is to get ride of network-manager and instal wicd. Instructions for getting and installing are on their site.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://wicd.net/"&gt;http://wicd.net/&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6148475283638377913-2906599119232745004?l=scottzumwalt.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://scottzumwalt.blogspot.com/feeds/2906599119232745004/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6148475283638377913&amp;postID=2906599119232745004' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6148475283638377913/posts/default/2906599119232745004'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6148475283638377913/posts/default/2906599119232745004'/><link rel='alternate' type='text/html' href='http://scottzumwalt.blogspot.com/2008/12/network-connections-in-kubuntu.html' title='Network connections in (K)ubuntu'/><author><name>Scott Zumwalt</name><uri>http://www.blogger.com/profile/16592128307188200380</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://bp1.blogger.com/_4aP55hkI4n4/SF5iSi7fLRI/AAAAAAAAABQ/Md1fubIc8qM/S220/SuperScottIcon.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6148475283638377913.post-5769165523974584687</id><published>2008-07-20T16:54:00.000-07:00</published><updated>2008-07-31T06:58:20.885-07:00</updated><title type='text'>CM15A X10 Home Automation with Linux</title><content type='html'>A lot of the information and source code is slightly out of date on the topic of X10 on Linux. Certain changes in the latest kernels prevent the code from compiling out of the box. The machine I did this on is Kubuntu with the 2.6.24-16 kernel. Neil Cherry did a lot of good work on this subject. &lt;a href="http://home.comcast.net/%7Encherry/common/cm15d/cm15d.html"&gt;His page&lt;/a&gt; is full of a lot of detail that you probably think you don't need. Read through it anyway if you are actually trying to get the CM15A working in Linux.&lt;br /&gt;&lt;br /&gt;First you will need the &lt;a href="http://www.linuxha.com/common/iplc-driver.tgz"&gt;driver&lt;/a&gt; and the &lt;a href="http://cwoodward.linux-site.net/x10/cm15a-driver.tgz"&gt;daemon&lt;/a&gt;. Download and unpack both. To get either to compile you need to change a few lines and comment out some others. You have to do the same thing in both packages. Find the line that reads, "#include linux/config.h" and change it to "#include linux/autoconf.h" Then comment out any line that starts with "MODULE_PARM". Next, in the cm15a-driver package in the cm15a.c file find the usb_class_driver struct and comment out the line that begins with "mode:" and do the same for the line in the next struct that begins with "owner:". Save everything and then run ./configure;make;make install.&lt;br /&gt;&lt;br /&gt;Once everything is installed you'll need to run these commands:&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;mkdir /dev/usb&lt;br /&gt;mknod --mode=a=rw /dev/usb/iplc0 c 180 240&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;then go into ./iplc/driver/linux-2.6/ and run:&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;insmod iplc.ko&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;then into cm15a-driver/driver/linux-2.6/ and run:&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;insmod cm15a.ko&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;That should be it. Here is a simple perl script that will turn on or off A1 depending on which line is uncommented.&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;#!/usr/bin/perl&lt;br /&gt;use Fcntl;&lt;br /&gt;&lt;br /&gt;sysopen( cm15a, "/dev/usb/iplc0", O_RDWR |O_NOCTTY | O_NONBLOCK )&lt;br /&gt;       || die "Cannot find $!";&lt;br /&gt;syswrite cm15a, pack( "CC", 4, 0x66), 2;&lt;br /&gt;sleep 1;&lt;br /&gt;&lt;br /&gt;# Turns on&lt;br /&gt;syswrite cm15a, pack( "CC", 6, 0x62 ), 2;&lt;br /&gt;&lt;br /&gt;# Turns off&lt;br /&gt;#syswrite cm15a, pack( "CC", 6, 0x63 ), 2;&lt;br /&gt;close( CM15A );&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;Now for some explanation of the script. The sysopen line creates a pointer of "cm15a" to the device file we made earlier. This gives perl an easy name to send future data. The first syswrite line is what tells the cm15a what device we are sending a signal to. In this case it is A1. We have to wait about 1 second because an ACK packet is sent back. The next syswrite sends the 'turn on' signal and the commented out syswrite sends 'turn off'. The last line closes the pointer for a graceful exit. The '4' part of the syswrite is what tells the unit that you are sending a Unit address (A1, C3, etc). The '6' means you are sending a Function code (on, off, dim, etc). Below is a cheet sheet for the A codes. If you look on Neil Cherry's page you'll see his chart of whole break down of the codes. The codes are not in binary order and seemed to have been chosen randomly. I made this just to help myself out and not have to decifer the right code everytime I'm writing a script. For the other house codes like B and up, just change the 6 to whatever Neil's chart says it should be.&lt;br /&gt;&lt;br /&gt;A1    0x66&lt;br /&gt;A2    0x6E&lt;br /&gt;A3    0x62&lt;br /&gt;A4    0x6A&lt;br /&gt;A5    0x61&lt;br /&gt;A6    0x69&lt;br /&gt;A7    0x65&lt;br /&gt;A8    0x6D&lt;br /&gt;A9    0x67&lt;br /&gt;A10    0x6F&lt;br /&gt;A11    0x63&lt;br /&gt;A12    0x6B&lt;br /&gt;A13    0x60&lt;br /&gt;A14    0x68&lt;br /&gt;A15    0x64&lt;br /&gt;A16    0x6C&lt;br /&gt;&lt;br /&gt;I hope this helps!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6148475283638377913-5769165523974584687?l=scottzumwalt.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://scottzumwalt.blogspot.com/feeds/5769165523974584687/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6148475283638377913&amp;postID=5769165523974584687' title='9 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6148475283638377913/posts/default/5769165523974584687'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6148475283638377913/posts/default/5769165523974584687'/><link rel='alternate' type='text/html' href='http://scottzumwalt.blogspot.com/2008/07/cm15a-x10-home-automation-with-linux.html' title='CM15A X10 Home Automation with Linux'/><author><name>Scott Zumwalt</name><uri>http://www.blogger.com/profile/16592128307188200380</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://bp1.blogger.com/_4aP55hkI4n4/SF5iSi7fLRI/AAAAAAAAABQ/Md1fubIc8qM/S220/SuperScottIcon.jpg'/></author><thr:total>9</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6148475283638377913.post-133970246345637075</id><published>2008-06-27T18:34:00.000-07:00</published><updated>2008-12-14T00:43:45.436-08:00</updated><title type='text'>Arduino RFID Door lock</title><content type='html'>This project is for an RFID accessible door lock controlled by an Arduino microcontroller. Most of this kind of project is pretty straight forward and just takes some trial-and-error and a lot of reading. I'm sure a lot of people want to try something very similar for themselves, so here is what I have done.&lt;br /&gt;&lt;br /&gt;The basic premise is that when an RFID tag is detected in the field the data is sent to the Arduino. The Arduino compares the tag to a list of valid tags. If it matches then the servo is turned and the LED changes color. Which way the servo turns is determined by which way it turned last. If its open, it closes. If its closed, it opens. Therefore, the only way to lock or unlock this door is with a valid RFID tag.&lt;br /&gt;&lt;br /&gt;Things you'll need:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Arduino Decimilia (or equivalent)&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Parallax RFID Reader&lt;/li&gt;&lt;li&gt;Standard Servo&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Jumper Wires&lt;/li&gt;&lt;li&gt;Project Box&lt;/li&gt;&lt;li&gt;Deadbolt lock assembly you don't mind destroying&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Standoffs&lt;/li&gt;&lt;li&gt;Cutting/drilling tool (Dremel)&lt;/li&gt;&lt;/ul&gt;Optional things:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;LEDs (2)&lt;/li&gt;&lt;li&gt;LED Housings (2)&lt;/li&gt;&lt;li&gt;Breakaway headers (male and female)&lt;/li&gt;&lt;li&gt;Soldering iron&lt;/li&gt;&lt;li&gt;Solder&lt;/li&gt;&lt;li&gt;Basic soldering skills&lt;/li&gt;&lt;li&gt;Solder-less bread board&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;    You will probably want to mock this up on a breadboard first to be sure everything works before you start cutting and soldering.&lt;br /&gt;&lt;br /&gt;&lt;a style="" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_4aP55hkI4n4/SGWcFt3ZrPI/AAAAAAAAABk/zzdGeaE3HHE/s1600-h/DSCF3546.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://3.bp.blogspot.com/_4aP55hkI4n4/SGWcFt3ZrPI/AAAAAAAAABk/zzdGeaE3HHE/s320/DSCF3546.JPG" alt="" id="BLOGGER_PHOTO_ID_5216747365403831538" border="0" /&gt;&lt;/a&gt;Once you are ready to build the final product the first thing to do is figure out how you want to mount the components. Keep in mind where wires, connectors, and LEDs are going to be. Be mindful of the height of your standoffs and how they will affect things mounted on the outside. I had installed the LED first without determining how far it would stick into the box and it almost touches the Arduino board. I ended up having to bend the connecting wires down slightly rather than drill another hole. Measure everything and drill as needed. This is alway an organic process for me and I always end up with more holes than I want or need.&lt;br /&gt;&lt;br /&gt;I soldered all my wires to breakaway headers to make it easier to connect and disconnect components. The male pins visible below are for the servo and the female connector is for an optional external LED mounted on the door knob to see the door state on the outside. You can also see the LED mounted on the box. This one is so the door state can be determined on the inside of the door&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: left;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_4aP55hkI4n4/SGWewffyQ8I/AAAAAAAAABs/4PMq8zH-slA/s1600-h/DSCF3547.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://3.bp.blogspot.com/_4aP55hkI4n4/SGWewffyQ8I/AAAAAAAAABs/4PMq8zH-slA/s320/DSCF3547.JPG" alt="" id="BLOGGER_PHOTO_ID_5216750299304313794" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Here is the basic wiring diagram:&lt;br /&gt;&lt;div style="text-align: left;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_4aP55hkI4n4/SGsbY5MoeNI/AAAAAAAAACM/G4ogUbh8QkE/s1600-h/rfid+project+copy.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://1.bp.blogspot.com/_4aP55hkI4n4/SGsbY5MoeNI/AAAAAAAAACM/G4ogUbh8QkE/s320/rfid+project+copy.jpg" alt="" id="BLOGGER_PHOTO_ID_5218294707723466962" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;If you copy and paste the code I have below make sure you connect all the wires in the same places. In my setup the RFID GND is connected to the GND on the top row, SOUT goes to 8, /ENABLE goes to 2, and VCC goes down and around to 5V on the bottom. The yellow or white wire of your servo is the control wire. It will go to pin 4. Red gets spliced on to the same wire on the reader that connects to 5V. Black is ground and is connected to GND on the bottom.&lt;br /&gt;&lt;br /&gt;The hardest part is figuring out how the servo is going to interface with your deadbolt. I'm afraid there isn't much help I can give you on this part. I went through three or four designs before I found one that worked with my deadbolt and the parts I have. Consider this a mechanical engineering exercise. All you have to do is find some way of connecting that servo wheel to the overcentering portion of the deadbolt. Since all deadbolts are different and there is no way you'll be able to replicate what I have done (mostly because I don't know where these pieces came from) I'm not going to bother posting pictures of it.&lt;br /&gt;&lt;br /&gt;All of that, plus this code and you should be off and ready to over complicate your entry procedures!&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;//BEGIN CODE&lt;br /&gt;&lt;softwareserial.h&gt;&lt;br /&gt;#define servoPin 4    // control pin for servo motor (White or yellow wire of servo)&lt;br /&gt;#define minPulse 500  // minimum servo position (Open position)&lt;br /&gt;#define maxPulse 2200 // maximum servo position (Closed position)&lt;br /&gt;#define rxPin 8        // SOUT pin of RFID module&lt;br /&gt;#define txPin 9&lt;br /&gt;#define enable 2      // /ENABLE pin of RFID module&lt;br /&gt;#define LED1 13        // LED output pin&lt;br /&gt;#define LED2 12        // other LED output pin for two-way LED (yellow)&lt;br /&gt;#define switchPin 7&lt;br /&gt;&lt;br /&gt;boolean open = true;  // default start up is to assume the lock is open&lt;br /&gt;int  val = 0;&lt;br /&gt;char code[10];&lt;br /&gt;int bytesread = 0;&lt;br /&gt;int pulse, switchVal;&lt;br /&gt;&lt;br /&gt;char tag1[11] = "0800335036";  // this is size 11 because it is a NULL terminating string&lt;br /&gt;char tag2[11] = "0800330A99";&lt;br /&gt;char tag3[11] = "0F03028B4F";&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;void LEDControl(int state){&lt;br /&gt;&lt;br /&gt;  switch (state){&lt;br /&gt;    case 1:&lt;br /&gt;      digitalWrite(LED1,HIGH);&lt;br /&gt;      digitalWrite(LED2,LOW);&lt;br /&gt;      break;&lt;br /&gt;    case 2:&lt;br /&gt;      digitalWrite(LED2,HIGH);&lt;br /&gt;      digitalWrite(LED1,LOW);&lt;br /&gt;      break;&lt;br /&gt;    case 3:&lt;br /&gt;      for(int y=0;y&lt;5;y++){&lt;br /&gt;      digitalWrite(LED1,HIGH);&lt;br /&gt;      digitalWrite(LED2,LOW);       &lt;br /&gt;      delay(250);&lt;br /&gt;      digitalWrite(LED2,HIGH);&lt;br /&gt;      digitalWrite(LED1,LOW);&lt;br /&gt;      delay(250);&lt;br /&gt;      }&lt;br /&gt;  }&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;boolean checkTag(char *tag){&lt;br /&gt;&lt;br /&gt;  for (int x=0;x&lt;10;x++){&lt;br /&gt;    if( tag[x] != code[x]){&lt;br /&gt;      return false;&lt;br /&gt;    }&lt;br /&gt;  }&lt;br /&gt;  return true;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;boolean findGoodTag(){&lt;br /&gt;  if (checkTag(tag1)){ return true;}&lt;br /&gt;  else if (checkTag(tag2)){ return true;}&lt;br /&gt;  else if (checkTag(tag3)){ return true;}&lt;br /&gt; &lt;br /&gt;  // Add more lines right here like the one above if you have more tags&lt;br /&gt; &lt;br /&gt;  else{&lt;br /&gt;    Serial.print("Bad tag: ");&lt;br /&gt;    Serial.println(code);&lt;br /&gt;    LEDControl(3);&lt;br /&gt;    return false;&lt;br /&gt;  }&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;void moveServo(){&lt;br /&gt;&lt;br /&gt;  if (open){&lt;br /&gt;       pulse = minPulse;&lt;br /&gt;       open = false;&lt;br /&gt;       LEDControl(1);&lt;br /&gt;  }&lt;br /&gt;  else if (!open){&lt;br /&gt;      pulse = maxPulse;&lt;br /&gt;      open = true;&lt;br /&gt;      LEDControl(2);&lt;br /&gt;  }&lt;br /&gt; &lt;br /&gt;  for (int x =1;x&lt;150;x++){&lt;br /&gt;      delay (10);                        // don't know why this works, but it does&lt;br /&gt;      digitalWrite(servoPin, HIGH);    // start the pulse&lt;br /&gt;      delayMicroseconds(pulse);        // pulse width&lt;br /&gt;      digitalWrite(servoPin, LOW);     // stop the pulse&lt;br /&gt;  }&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;void setup() {&lt;br /&gt;&lt;br /&gt;  pinMode(servoPin, OUTPUT);  // Set servo pin as an output pin&lt;br /&gt;  pinMode(LED1,OUTPUT);        // Set LED pin as output&lt;br /&gt;  pinMode(LED2,OUTPUT);        // Set LED pin as output&lt;br /&gt;  Serial.begin(9600);&lt;br /&gt;  Serial.println("Begin");&lt;br /&gt;  pinMode(enable,OUTPUT);       // Set digital pin 2 as OUTPUT to connect it to the RFID /ENABLE pin&lt;br /&gt;  digitalWrite(enable, LOW);    // Activate the RFID reader&lt;br /&gt;  pinMode(switchPin, INPUT);&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;void loop() {&lt;br /&gt;  SoftwareSerial RFID = SoftwareSerial(rxPin,txPin);&lt;br /&gt;  RFID.begin(2400);&lt;br /&gt;&lt;br /&gt;  switchVal = digitalRead(switchPin);&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;  if((val = RFID.read()) == 10)&lt;br /&gt;  {   // check for header&lt;br /&gt;    if(switchVal == HIGH){&lt;br /&gt;    Serial.println("Button");&lt;br /&gt;     moveServo();&lt;br /&gt;  } &lt;br /&gt;    bytesread = 0;&lt;br /&gt;    while(bytesread&lt;10)&lt;br /&gt;    {  // read 10 digit code&lt;br /&gt;      val = RFID.read();&lt;br /&gt;      if((val == 10)||(val == 13))&lt;br /&gt;      {  // if header or stop bytes before the 10 digit reading&lt;br /&gt;        break;                       // stop reading&lt;br /&gt;      }&lt;br /&gt;      code[bytesread] = val;         // add the digit          &lt;br /&gt;      bytesread++;                   // ready to read next digit &lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;    if((bytesread == 10) &amp;amp;&amp;amp; (findGoodTag()))&lt;br /&gt;    {  // if 10 digit read is complete  &lt;br /&gt;      digitalWrite(enable, HIGH);    // dectivate the RFID reader&lt;br /&gt;      moveServo();    &lt;br /&gt;      delay(500);&lt;br /&gt;      digitalWrite(enable, LOW);    // Activate the RFID reader&lt;br /&gt;    }&lt;br /&gt;  }&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;/softwareserial.h&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6148475283638377913-133970246345637075?l=scottzumwalt.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://scottzumwalt.blogspot.com/feeds/133970246345637075/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6148475283638377913&amp;postID=133970246345637075' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6148475283638377913/posts/default/133970246345637075'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6148475283638377913/posts/default/133970246345637075'/><link rel='alternate' type='text/html' href='http://scottzumwalt.blogspot.com/2008/06/arduino-rfid-door-lock.html' title='Arduino RFID Door lock'/><author><name>Scott Zumwalt</name><uri>http://www.blogger.com/profile/16592128307188200380</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://bp1.blogger.com/_4aP55hkI4n4/SF5iSi7fLRI/AAAAAAAAABQ/Md1fubIc8qM/S220/SuperScottIcon.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_4aP55hkI4n4/SGWcFt3ZrPI/AAAAAAAAABk/zzdGeaE3HHE/s72-c/DSCF3546.JPG' height='72' width='72'/><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6148475283638377913.post-3561530482520255053</id><published>2008-06-22T07:33:00.000-07:00</published><updated>2008-06-22T07:39:41.747-07:00</updated><title type='text'>Introduction</title><content type='html'>This is meant to be a chronicle of my further adventures in the use of all kinds of technology. I am an avid Linux user and also have become involved in electronics and robot creation. Specifically, I use the Arduino microcontroller. I have also used the BASIC Stamp and will give my input on that later. Look forward to posts on how I accomplish things that you probably are trying or want to try with Linux and the Arduino/BASIC Stamp.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6148475283638377913-3561530482520255053?l=scottzumwalt.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://scottzumwalt.blogspot.com/feeds/3561530482520255053/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6148475283638377913&amp;postID=3561530482520255053' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6148475283638377913/posts/default/3561530482520255053'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6148475283638377913/posts/default/3561530482520255053'/><link rel='alternate' type='text/html' href='http://scottzumwalt.blogspot.com/2008/06/introduction.html' title='Introduction'/><author><name>Scott Zumwalt</name><uri>http://www.blogger.com/profile/16592128307188200380</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://bp1.blogger.com/_4aP55hkI4n4/SF5iSi7fLRI/AAAAAAAAABQ/Md1fubIc8qM/S220/SuperScottIcon.jpg'/></author><thr:total>0</thr:total></entry></feed>
