<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>TKJ Electronics &#187; rfid</title>
	<atom:link href="http://elec.tkjweb.dk/blog/tag/rfid/feed/" rel="self" type="application/rss+xml" />
	<link>http://elec.tkjweb.dk/blog</link>
	<description>The electronics-blog</description>
	<lastBuildDate>Sun, 20 Jun 2010 11:51:40 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>RFID Modded Safe</title>
		<link>http://elec.tkjweb.dk/blog/2009/06/rfid-modded-safe/</link>
		<comments>http://elec.tkjweb.dk/blog/2009/06/rfid-modded-safe/#comments</comments>
		<pubDate>Sat, 20 Jun 2009 10:56:05 +0000</pubDate>
		<dc:creator>Thomas Jespersen</dc:creator>
				<category><![CDATA[Arduino Projects]]></category>
		<category><![CDATA[id-12]]></category>
		<category><![CDATA[id-20]]></category>
		<category><![CDATA[id12]]></category>
		<category><![CDATA[id20]]></category>
		<category><![CDATA[modding]]></category>
		<category><![CDATA[rfid]]></category>
		<category><![CDATA[safe]]></category>

		<guid isPermaLink="false">http://elec.tkjweb.dk/blog/?p=142</guid>
		<description><![CDATA[This project is about my RFID Modded Safe.
I&#8217;ve modded an old electronic toy-safe, which is unlocked by typing the 4-char password.
I&#8217;ve unsoldered the locking-mechanism from the circuitboard, and connected it to the Arduino instead.
Then I connected a ID-20 RFID Reader to the Arduino and programmed it to read the tag, and see if it was [...]]]></description>
			<content:encoded><![CDATA[<p>This project is about my RFID Modded Safe.</p>
<p>I&#8217;ve modded an old electronic toy-safe, which is unlocked by typing the 4-char password.</p>
<div id="attachment_147" class="wp-caption aligncenter" style="width: 310px"><a href="http://elec.tkjweb.dk/blog/wp-content/uploads/IMG00021.JPG"><img class="size-medium wp-image-147" title="RFID Modded Safe" src="http://elec.tkjweb.dk/blog/wp-content/uploads/IMG00021-300x225.jpg" alt="RFID Modded Safe" width="300" height="225" /></a><p class="wp-caption-text">RFID Modded Safe</p></div>
<p>I&#8217;ve unsoldered the locking-mechanism from the circuitboard, and connected it to the Arduino instead.</p>
<div id="attachment_144" class="wp-caption aligncenter" style="width: 310px"><a href="http://elec.tkjweb.dk/blog/wp-content/uploads/IMG00009.JPG"><img class="size-medium wp-image-144" title="Locking-Mechanism Hack" src="http://elec.tkjweb.dk/blog/wp-content/uploads/IMG00009-300x225.jpg" alt="Locking-Mechanism Hack" width="300" height="225" /></a><p class="wp-caption-text">Locking-Mechanism Hack</p></div>
<p>Then I connected a ID-20 RFID Reader to the Arduino and programmed it to read the tag, and see if it was allowed to enter the safe.</p>
<div id="attachment_146" class="wp-caption aligncenter" style="width: 310px"><a href="http://elec.tkjweb.dk/blog/wp-content/uploads/IMG00006.JPG"><img class="size-medium wp-image-146" title="ID-20 RFID Reader" src="http://elec.tkjweb.dk/blog/wp-content/uploads/IMG00006-300x225.jpg" alt="ID-20 RFID Reader" width="300" height="225" /></a><p class="wp-caption-text">ID-20 RFID Reader</p></div>
<p>If it was allowed, the Arduino will keep the safe unlocked in 3 seconds!</p>
<p>I&#8217;ve also made this video to show how it works:<br />
<span class="youtube">
<object width="480" height="360">
<param name="movie" value="http://www.youtube.com/v/oxuD--7wWE8&amp;rel=1&amp;color1=d6d6d6&amp;color2=f0f0f0&amp;border=0&amp;fs=1&amp;hl=en&amp;autoplay=0&amp;showinfo=0&amp;iv_load_policy=3&amp;showsearch=0&amp;hd=1" />
<param name="allowFullScreen" value="true" />
<embed wmode="transparent" src="http://www.youtube.com/v/oxuD--7wWE8&amp;rel=1&amp;color1=d6d6d6&amp;color2=f0f0f0&amp;border=0&amp;fs=1&amp;hl=en&amp;autoplay=0&amp;showinfo=0&amp;iv_load_policy=3&amp;showsearch=0&amp;hd=1" type="application/x-shockwave-flash" allowfullscreen="true" width="480" height="360"></embed>
<param name="wmode" value="transparent" />
</object>
</span><p><a href="http://www.youtube.com/watch?v=oxuD--7wWE8&fmt=18">www.youtube.com/watch?v=oxuD--7wWE8</a></p></p>
<p>You can grab the code here, and try it out:</p>
<pre>#include &lt;NewSoftSerial.h&gt;</p>
<p>NewSoftSerial ID12(5,6);<br />
//                RX,TX</p>
<p>// RFID reader ID-12 for Arduino<br />
// Based on code by BARRAGAN<br />
// and code from HC Gilje - http://hcgilje.wordpress.com/resources/rfid_id12_tagreader/<br />
// Modified for Arudino by djmatic<br />
// Modified for ID-12 and checksum by Martijn The - http://www.martijnthe.nl/<br />
//<br />
// Use the drawings from HC Gilje to wire up the ID-12.<br />
// Remark: disconnect the rx serial wire to the ID-12 when uploading the sketch<br />
<a href="http://elec.tkjweb.dk/blog/2009/06/rfid-modded-safe/#cut-1">Read more...</a></p>
]]></content:encoded>
			<wfw:commentRss>http://elec.tkjweb.dk/blog/2009/06/rfid-modded-safe/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
