<?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>uRaNGaTaNG &#187; nabaztag</title>
	<atom:link href="http://www.rngtng.com/tag/nabaztag/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.rngtng.com</link>
	<description>Featuring Ruby, Rails, Web development, Arduino, Processing, Nabaztag and more...</description>
	<lastBuildDate>Thu, 12 Jan 2012 10:08:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<atom:link rel='hub' href='http://www.rngtng.com/?pushpress=hub'/>
		<item>
		<title>Hacking the Nabaztag &#8211; Arduino injects via I2C data into RFID Reader</title>
		<link>http://www.rngtng.com/2012/01/10/hacking-the-nabaztag-arduino-injects-via-i2c-data-into-rfid-reader/</link>
		<comments>http://www.rngtng.com/2012/01/10/hacking-the-nabaztag-arduino-injects-via-i2c-data-into-rfid-reader/#comments</comments>
		<pubDate>Mon, 09 Jan 2012 23:28:04 +0000</pubDate>
		<dc:creator>tobi</dc:creator>
				<category><![CDATA[Arduino & Co.]]></category>
		<category><![CDATA[Arduino]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[inject]]></category>
		<category><![CDATA[nabaztag]]></category>
		<category><![CDATA[rfid]]></category>

		<guid isPermaLink="false">http://www.rngtng.com/?p=624</guid>
		<description><![CDATA[

Wow! After more than two years I finally got my hands dirty hacking the Nabaztag rabbit. The release of the source code last summer were very encouraging here! Expect some awesome results in the next time :-) 

Let's start with NabaztagInjector, an Arduino Library to inject data:

What bothered me for long was the missing ...]]></description>
			<content:encoded><![CDATA[<p><img src="http://farm7.staticflickr.com/6185/6151922207_019ac10ee4_d.jpg" alt="" width="500" height="500" class="aligncenter size-full wp-image-626" /></p>
<p>Wow! After <a href="http://www.rngtng.com/2009/12/02/hacking-the-nabaztag/" class="broken_link">more than two years</a> I finally got my hands dirty hacking the Nabaztag rabbit. The <a href="http://code.google.com/p/nabaztag-source-code/">release of the source code</a> last summer were very encouraging here! Expect some awesome results in the next time <img src='http://www.rngtng.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  </p>
<p>Let&#8217;s start with <strong>NabaztagInjector</strong>, an Arduino Library to inject data:</p>
<p>What bothered me for long was the missing possibility to connect external devices to the rabbit. How awesome would it be to use the rabbit for sending data into the net? Imagine it as WIFI shield you Arduino.</p>
<p>Guess what &#8211; that&#8217;s possible: replacing the RFID reader with an Arduino (both use the I2C bus) running a simulation of the RFID reader chip, enabled me to inject any custom data to the rabbit. Hacked!</p>
<p>As result, I created this tiny Arduino library to encapsulates the full process behind and easy API:</p>
<div id="gist-1582447" class="gist">

        <div class="gist-file">
          <div class="gist-data gist-syntax">
              <div class="highlight"><pre><div class='line' id='LC1'><span class="cm">/**</span></div><div class='line' id='LC2'><span class="cm"> * Simple Arduino NabaztagInjector example sketch</span></div><div class='line' id='LC3'><span class="cm"> **/</span></div><div class='line' id='LC4'><br/></div><div class='line' id='LC5'><span class="cp">#include &lt;Nabaztag.h&gt;</span></div><div class='line' id='LC6'><br/></div><div class='line' id='LC7'><span class="kt">void</span> <span class="n">setup</span><span class="p">()</span> <span class="p">{</span></div><div class='line' id='LC8'>&nbsp;&nbsp;<span class="n">Nabaztag</span><span class="p">.</span><span class="n">begin</span><span class="p">(</span><span class="mi">0</span><span class="p">);</span> <span class="c1">//0 = standalone</span></div><div class='line' id='LC9'><span class="p">}</span></div><div class='line' id='LC10'><br/></div><div class='line' id='LC11'><span class="kt">void</span> <span class="n">loop</span><span class="p">()</span> <span class="p">{</span></div><div class='line' id='LC12'>&nbsp;&nbsp;<span class="c1">// send 1337 to the rabbit</span></div><div class='line' id='LC13'>&nbsp;&nbsp;<span class="n">Nabaztag</span><span class="p">.</span><span class="n">inject</span><span class="p">(</span><span class="mi">1337</span><span class="p">);</span></div><div class='line' id='LC14'>&nbsp;&nbsp;<span class="c1">//done</span></div><div class='line' id='LC15'><span class="p">}</span></div></pre></div>
          </div>

          <div class="gist-meta">
            <a href="https://gist.github.com/raw/1582447/51aa220ff30606e35ab026779eb6e4a797f57ce9/nabaztag.ino" style="float:right;">view raw</a>
            <a href="https://gist.github.com/1582447#file_nabaztag.ino" style="float:right;margin-right:10px;color:#666">nabaztag.ino</a>
            <a href="https://gist.github.com/1582447">This Gist</a> brought to you by <a href="http://github.com">GitHub</a>.
          </div>
        </div>
</div>

<p>Check out the full Readme, Source code and Examples here:</p>
<p><a href="http://www.rngtng.com/nabaztag-injector-arduino-rfid-hack/" target="_blank">http://www.rngtng.com/nabaztag-injector-arduino-rfid-hack/</a></p>
<p class="wp-flattr-button"></p> <p><a href="http://www.rngtng.com/?flattrss_redirect&amp;id=624&amp;md5=bc43e27d302e1ee2344eb8a73c6ca398" title="Flattr" target="_blank"><img src="http://www.rngtng.com/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.rngtng.com/2012/01/10/hacking-the-nabaztag-arduino-injects-via-i2c-data-into-rfid-reader/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Hacking the Nabaztag</title>
		<link>http://www.rngtng.com/2009/12/02/hacking-the-nabaztag/</link>
		<comments>http://www.rngtng.com/2009/12/02/hacking-the-nabaztag/#comments</comments>
		<pubDate>Wed, 02 Dec 2009 10:20:55 +0000</pubDate>
		<dc:creator>tobi</dc:creator>
				<category><![CDATA[Happy Hacking]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[nabaztag]]></category>

		<guid isPermaLink="false">http://www.rngtng.com/?p=231</guid>
		<description><![CDATA[
Alright, I spend some time with my new toy Nabaztag 'Nabaccia'

What confused me most: there have been two Firmware version out there. Some project depend on the old one, some other on the, new Jabber based, version. 

Here are some interesting projects I've found:
http://nabaztools.sourceforge.net/ (outdated, MAC OS X)

http://sourceforge.net/projects/opennab/ (PHP)

http://code.google.com/p/nabazlib/ (python)

http://nabazlab.sourceforge.net/index_en.htm (windows only)

A working Proxyserver: ...]]></description>
			<content:encoded><![CDATA[<p style="text-align: center"><img class="aligncenter size-full wp-image-446" src="http://www.rngtng.com/files/2010/09/nabaztag.png" alt="" width="583" height="397" /></p>
<p>Alright, I spend some time with my new <em>toy</em> Nabaztag &#8216;<a href="http://twitter.com/nabaccia">Nabaccia</a>&#8216;</p>
<p>What confused me most: there have been two Firmware version out there. Some project depend on the old one, some other on the, new Jabber based, version. </p>
<p>Here are some interesting projects I&#8217;ve found:<br />
<a href="http://nabaztools.sourceforge.net/" target="_blank">http://nabaztools.sourceforge.net/</a> (outdated, MAC OS X)</p>
<p><a href="http://sourceforge.net/projects/opennab/" target="_blank">http://sourceforge.net/projects/opennab/</a> (PHP)</p>
<p><a href="http://code.google.com/p/nabazlib/" target="_blank">http://code.google.com/p/nabazlib/</a> (python)</p>
<p><a href="http://nabazlab.sourceforge.net/index_en.htm" target="_blank">http://nabazlab.sourceforge.net/index_en.htm</a> (windows only)</p>
<p>A working Proxyserver: jNabServer</p>
<p><a href="http://code.google.com/p/jnabserver/" target="_blank">http://code.google.com/p/jnabserver/</a></p>
<p>A good summery how to start &#8216;nabazhacking&#8217; is here:</p>
<p><a href="http://www.saraproft.org/?p=912" target="_blank">http://www.saraproft.org/?p=912</a></p>
<p><a href="http://blog.makezine.com/archive/2006/03/more_nabaztag_hacking.html" target="_blank">http://blog.makezine.com/archive/2006/03/more_nabaztag_hacking.html</a></p>
<p>A very detailed look into the electronics of the rabbit:</p>
<p><a href="http://www.petertyser.com/2007/03/11/nabaztag-nabaztagtag-dissection/" target="_blank">http://www.petertyser.com/2007/03/11/nabaztag-nabaztagtag-dissection/</a></p>
<p>Forums:<br />
<a href="http://nabaztag.forumactif.fr/" target="_blank">http://nabaztag.forumactif.fr/</a> (french)<br />
<a href="http://www.mynabaztag.de" target="_blank">http://www.mynabaztag.de</a> (german)<br />
<a href="http://www.nabaztalk.com" target="_blank">http://www.nabaztalk.com</a> (english)</p>
<p>Blogs:<br />
<a href="http://www.nabaztag-blog.de" target="_blank">http://www.nabaztag-blog.de</a> (german)</p>
<p>Quite complete list of other sources:</p>
<p><a href="http://www.nabzone.com/?frG=" target="_blank">http://www.nabzone.com/?frG=</a>/liens.php</p>
<p class="wp-flattr-button"></p>]]></content:encoded>
			<wfw:commentRss>http://www.rngtng.com/2009/12/02/hacking-the-nabaztag/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Nabaztag:tag arrived &#8211; meet Nabaccia!</title>
		<link>http://www.rngtng.com/2009/09/29/nabaztagtag-arrived-meet-nabaccia/</link>
		<comments>http://www.rngtng.com/2009/09/29/nabaztagtag-arrived-meet-nabaccia/#comments</comments>
		<pubDate>Tue, 29 Sep 2009 18:33:51 +0000</pubDate>
		<dc:creator>tobi</dc:creator>
				<category><![CDATA[Happy Hacking]]></category>
		<category><![CDATA[internet of things]]></category>
		<category><![CDATA[nabaccia]]></category>
		<category><![CDATA[nabaztag]]></category>
		<category><![CDATA[rfid]]></category>
		<category><![CDATA[toys]]></category>
		<category><![CDATA[violet]]></category>

		<guid isPermaLink="false">http://www.rngtng.com/?p=220</guid>
		<description><![CDATA[
Yay, my new toy has arrived: It's a Nabaztag. Short story: I first met the rabbit in 2007 at re:publica conference @ Berlin, and always want to have one since then. Nabaztag is a rabbit connected to the Internet with moving ears, 4x color LEDs, a RFID reader, a button and Sound In &#38; ...]]></description>
			<content:encoded><![CDATA[<p style="text-align: center"><img class="aligncenter" src="http://farm3.static.flickr.com/2478/3962410944_eb564a3d1a.jpg" alt="" /></p>
<p>Yay, my new toy has arrived: It&#8217;s a <a href="http://www.nabaztag.com">Nabaztag</a>. Short story: I first met the rabbit in 2007 at <a href="http://re-publica.de/">re:publica</a> conference @ Berlin, and always want to have one since then. Nabaztag is a rabbit connected to the Internet with moving ears, 4x color LEDs, a RFID reader, a button and Sound In &amp; Output. It&#8217;s hard to understand why one wants to have such rabbit, but the idea to connect things with the internet sounds very interesting to me. But just for playing around,  it was to expensive &#8230; till now!</p>
<p>Sadly (well, luckily for me) <a href="http://www.violet.net">Violet</a>, the producer of Nabaztag, <a href="http://www.engadget.com/2009/08/11/nabaztag-cant-make-rfid-cool-has-to-file-for-bankruptcy/">is on it&#8217;s way to bankruptcy</a>.  As of this <a href="http://www.myRobotcenter.de">MyRobotcenter</a> started selling them half price &#8211; nice!  I couldn&#8217;t anymore resists buying and got the rabbit+mirror+zstamps for a good price &#8211;  that&#8217;s all right!</p>
<p>According to violet, each thing needs a name, so mine is called <strong>Nabaccia</strong>, listens to emails via <a href="mailto:nabaccia - things.violet.net">nabaccia &#8211; things.violet.net</a> and, of course, <a href="http://www.twitter.com/nabaccia">twitters here</a> as well. So, now it&#8217;s time to hack the rabbit. I saw a couple of interesting project out there, let&#8217;s get it on! More on this soon!</p>
<p>I know it&#8217;s totally wired and hard to understand why, just don&#8217;t ask <img src='http://www.rngtng.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>Image by <a href="http://www.liron.de/blog/index.php">Liron</a> &#8211; thx!</p>
<p class="wp-flattr-button"></p>]]></content:encoded>
			<wfw:commentRss>http://www.rngtng.com/2009/09/29/nabaztagtag-arrived-meet-nabaccia/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

