<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
  <id>tag:www.local-guru.net,2005:/blog/tag/arduino</id>
  <link type="text/html" href="http://www.local-guru.net" rel="alternate"/>
  <link type="application/atom+xml" href="http://www.local-guru.net/blog/tag/arduino.atom" rel="self"/>
  <title>GuruBlog : Articles about arduino</title>
  <subtitle>local-guru.net</subtitle>
  <updated>2011-10-24T04:54:08+02:00</updated>
  <generator>GuruBlog engine</generator>
  <entry>
    <id>tag:www.local-guru.net,2005:Article/491</id>
    <published>2011-10-24T04:54:08+02:00</published>
    <updated>2011-10-24T04:54:08+02:00</updated>
    <link type="text/html" href="http://www.local-guru.net//blog/2011/10/24/Lots-Of-Leds" rel="alternate"/>
    <author>
      <name>Nikolaus Gradwohl</name>
    </author>
    <title type="html">Lots Of Leds</title>
    <category term="arduino" scheme="http://www.local-guru.net/blog/tag/arduino"/>
    <category term="lol-shield" scheme="http://www.local-guru.net/blog/tag/lol-shield"/>
    <content type="html">&lt;p&gt;I ordered a &lt;a href="http://jimmieprodgers.com/kits/lolshield/"&gt;lol-shield&lt;/a&gt; for my arduino a while ago. Yesterday I finally found the time to solder
the 133 leds :-)&lt;/p&gt;

&lt;p&gt;I had no time to write any code for it yet, but I ran the example scripts from the LolShield Library
and it works quite well.&lt;/p&gt;

&lt;p&gt;so stay tuned for some led-blinking madness :-)&lt;/p&gt;

&lt;p&gt;&lt;img src="http://www.local-guru.net/img/guru/lolshield.jpg" alt="lol-shield" /&gt;&lt;/p&gt;
</content>
  </entry>
  <entry>
    <id>tag:www.local-guru.net,2005:Article/374</id>
    <published>2011-03-24T20:19:32+01:00</published>
    <updated>2011-03-24T20:19:32+01:00</updated>
    <link type="text/html" href="http://www.local-guru.net//blog/2011/3/24/getting-started-with-the-videogameshield" rel="alternate"/>
    <author>
      <name>Nikolaus Gradwohl</name>
    </author>
    <title type="html">Getting Started with the VideoGameShield</title>
    <category term="tutorial" scheme="http://www.local-guru.net/blog/tag/tutorial"/>
    <category term="arduino" scheme="http://www.local-guru.net/blog/tag/arduino"/>
    <category term="howto" scheme="http://www.local-guru.net/blog/tag/howto"/>
    <category term="videogameshield" scheme="http://www.local-guru.net/blog/tag/videogameshield"/>
    <content type="html">&lt;p&gt;The &lt;a href="http://www.wayneandlayne.com/projects/video-game-shield/"&gt;VideoGameShield from Wayne&amp;amp;Layne&lt;/a&gt; is a arduino-shield
that allows you to write videogames that run on your TV using an arduino and a Wii-Nunchuck or Classic Game Controller.&lt;/p&gt;

&lt;p&gt;This is a short tutorial that helps you on your first steps after you have solderd your kit following
&lt;a href="http://www.wayneandlayne.com/projects/video-game-shield/build/"&gt;these instructions&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;img src="http://www.local-guru.net/img/guru/vgs.jpg" alt="VideoGameShield" /&gt;&lt;/p&gt;

&lt;p&gt;&lt;img src="http://www.local-guru.net/img/guru/arduino_vgs.png" alt="VGS Hello World" /&gt;&lt;/p&gt;

&lt;p&gt;To draw on the screen the VGS uses the TVout library. In this example I use a Nunchuck as controller.
first we include all the libraries that are needet to use TVout and Nunchuck&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;#include &amp;lt;TVout.h&amp;gt;
#include &amp;lt;fontALL.h&amp;gt;
#include &amp;lt;i2cmaster.h&amp;gt;
#include &amp;lt;nunchuck.h&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;then we define the structures we need to access the libraries&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;Nunchuck n;
TVout TV;
&lt;/code&gt;&lt;/pre&gt;
</content>
  </entry>
  <entry>
    <id>tag:www.local-guru.net,2005:Article/273</id>
    <published>2010-06-05T18:17:00+02:00</published>
    <updated>2010-06-05T18:17:00+02:00</updated>
    <link type="text/html" href="http://www.local-guru.net//blog/2010/6/5/blinking-logfile-map" rel="alternate"/>
    <author>
      <name>Nikolaus Gradwohl</name>
    </author>
    <title type="html">Blinking Logfile Map</title>
    <category term="Creativity" scheme="http://www.local-guru.net/blog/tag/30daysofcreativity"/>
    <category term="arduino" scheme="http://www.local-guru.net/blog/tag/arduino"/>
    <category term="ruby" scheme="http://www.local-guru.net/blog/tag/ruby"/>
    <category term="hardware" scheme="http://www.local-guru.net/blog/tag/hardware"/>
    <category term="visualization" scheme="http://www.local-guru.net/blog/tag/visualization"/>
    <content type="html">&lt;p&gt;I always wanted to see where the readers of my blog are comming from, so I took a picture frame and inserted a world map, a handfull of leds and an arduino. Some soldering and some rubyscripts later I had my hardware geo-aware logfile visualization.&lt;/p&gt;

&lt;p&gt;I have a script running at the server that parses new ip adresses from the log file and geocodes them. Than the continent code is
sent to my mac where i have a little script that forwards the continent code to the serial port. And finally the arduino in the
picture frame is making the leds blink. The whole project was hacked together as a weekend project so the scripts might need some
"fine-tuning" :-)&lt;/p&gt;

&lt;p&gt;This is my day 5 project for &lt;a href="http://30daysofcreativity.com/"&gt;30DaysOfCreativity&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;so please read my blog to make the leds blink :-)&lt;/p&gt;

&lt;p&gt;&lt;img src="http://www.local-guru.net/img/guru/blinklog1.jpg" alt="blinklog" /&gt;
&lt;img src="http://www.local-guru.net/img/guru/blinklog2.jpg" alt="blinklog" /&gt;&lt;/p&gt;
</content>
  </entry>
  <entry>
    <id>tag:www.local-guru.net,2005:Article/222</id>
    <published>2010-01-08T05:20:00+01:00</published>
    <updated>2010-01-08T05:20:00+01:00</updated>
    <link type="text/html" href="http://www.local-guru.net//blog/2010/1/8/smiley-o-mat" rel="alternate"/>
    <author>
      <name>Nikolaus Gradwohl</name>
    </author>
    <title type="html">Smiley-O-Mat</title>
    <category term="processing" scheme="http://www.local-guru.net/blog/tag/processing"/>
    <category term="makerbot" scheme="http://www.local-guru.net/blog/tag/makerbot"/>
    <category term="arduino" scheme="http://www.local-guru.net/blog/tag/arduino"/>
    <content type="html">&lt;p&gt;I just finished my Smiley-O-Mat - it's a tin-box with 3 turning knobs that allows you to controll the appearence
of a smiley. With 3 simple turns I can now tell your co-workers, familymembers, ... how you feel at the moment
and if it is wise to talk to me right now :-)&lt;/p&gt;

&lt;p&gt;The controllerbox is made with an arduino, the smiley generator is written in processing, and the turning knobs
are &lt;a href="http://www.local-guru.net/blog/2009/12/30/turning-knobs"&gt;printed on my makerbot&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This is what the controller looks like
&lt;img src="http://www.local-guru.net/img/guru/smiley_controller.jpg" alt="controler box" /&gt;&lt;/p&gt;

&lt;p&gt;and here are some smileys i generated&lt;/p&gt;

&lt;p&gt;&lt;img src="http://www.local-guru.net/img/guru/smiley1.png" alt="smiley1" /&gt;
&lt;img src="http://www.local-guru.net/img/guru/smiley2.png" alt="smiley2" /&gt;
&lt;img src="http://www.local-guru.net/img/guru/smiley3.png" alt="smiley3" /&gt;
&lt;img src="http://www.local-guru.net/img/guru/smiley4.png" alt="smiley4" /&gt;
&lt;img src="http://www.local-guru.net/img/guru/smiley5.png" alt="smiley5" /&gt;
&lt;img src="http://www.local-guru.net/img/guru/smiley6.png" alt="smiley6" /&gt;&lt;/p&gt;
</content>
  </entry>
  <entry>
    <id>tag:www.local-guru.net,2005:Article/211</id>
    <published>2009-12-14T01:53:00+01:00</published>
    <updated>2009-12-14T01:53:00+01:00</updated>
    <link type="text/html" href="http://www.local-guru.net//blog/2009/12/14/using-an-arduino-as-a-avr-programmer" rel="alternate"/>
    <author>
      <name>Nikolaus Gradwohl</name>
    </author>
    <title type="html">Using an arduino as a AVR Programmer</title>
    <category term="arduino" scheme="http://www.local-guru.net/blog/tag/arduino"/>
    <category term="attiny13" scheme="http://www.local-guru.net/blog/tag/attiny13"/>
    <content type="html">&lt;p&gt;I managed to use an arduino as an isp programmer for my ATTiny13.
I first i tried to use the avr910 program described in &lt;a href="http://www.uchobby.com/index.php/2007/11/04/arduino-avr-in-system-programmer-isp/"&gt;this blogpost from Randall Bohn&lt;/a&gt;,
but avrdude could not flash my hex file :-/&lt;/p&gt;

&lt;p&gt;then i found a newer version of the code that emulates an avrisp &lt;a href="http://code.google.com/p/mega-isp/"&gt;at googlecode&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;img src="http://www.local-guru.net/img/guru/arduinoisp.jpg" alt="arduinoisp" /&gt;&lt;/p&gt;
</content>
  </entry>
  <entry>
    <id>tag:www.local-guru.net,2005:Article/186</id>
    <published>2009-09-02T16:44:00+02:00</published>
    <updated>2009-09-02T16:44:00+02:00</updated>
    <link type="text/html" href="http://www.local-guru.net//blog/2009/9/2/my-name-is-192-168-159-16" rel="alternate"/>
    <author>
      <name>Nikolaus Gradwohl</name>
    </author>
    <title type="html">My name is 192.168.159.16</title>
    <category term="processing" scheme="http://www.local-guru.net/blog/tag/processing"/>
    <category term="art" scheme="http://www.local-guru.net/blog/tag/art"/>
    <category term="tts" scheme="http://www.local-guru.net/blog/tag/tts"/>
    <category term="arduino" scheme="http://www.local-guru.net/blog/tag/arduino"/>
    <content type="html">&lt;p&gt;&lt;a href="http://varvarag.cdrews.de/"&gt;Varvara Guljajeva&lt;/a&gt; is using my &lt;a href="http://www.local-guru.net/blog/pages/ttslib"&gt;processing tts library&lt;/a&gt; for her lates project
&lt;a href="http://varvarag.cdrews.de/projects.htm#ntw_doll"&gt;My name is 192.168.159.16&lt;/a&gt;.&lt;/p&gt;

&lt;blockquote&gt;&lt;p&gt;My name is 192.168.159.16 - is a metaphorical visualization of nowadays-human beings.  In my point of view we are not
bounded to one body anymore. We are extended through networks to infinity. The location does not matter, what matters
is connection. Thus, at this point I totally agree with Mitchell &#8220;disconnection would be amputation. I link therefore,
I am.&#8221; We are becoming gradually fully equipped and totally dependent on technology cyberorgs.&lt;/p&gt;

&lt;p&gt;The installation consists of 4 dolls in each a speaker inside, 4 relays, arduino, a computer, and a modem.
We are using Processing, TTS (text to speech), and Arduino. The independent and at the same time isolated network
is created. IP addresses are continuously renewed and sent to a random doll. Thus only one doll is speaking at a
time (4 speakers are controlled by 4 relays through arduino).&lt;/p&gt;&lt;/blockquote&gt;

&lt;p&gt;the installation looks really cool - a bit creepy what she did to the dolls :-)&lt;/p&gt;
</content>
  </entry>
  <entry>
    <id>tag:www.local-guru.net,2005:Article/184</id>
    <published>2009-07-07T16:03:00+02:00</published>
    <updated>2009-07-07T16:03:00+02:00</updated>
    <link type="text/html" href="http://www.local-guru.net//blog/2009/7/7/adrduino-counter-with-lcd-display" rel="alternate"/>
    <author>
      <name>Nikolaus Gradwohl</name>
    </author>
    <title type="html">Adrduino Counter with lcd Display</title>
    <category term="arduino" scheme="http://www.local-guru.net/blog/tag/arduino"/>
    <content type="html">&lt;p&gt;I made a small device that has 3 independent counters which are shown
on a lcd-display. The device uses an arduino and has 3 buttons on the front
that are debounced in software and used to increment a variable. The variables
are printed on a 1x16 char lcd-display.&lt;/p&gt;

&lt;p&gt;the red switch on the side is a power-switch.&lt;/p&gt;

&lt;p&gt;&lt;img src="http://www.local-guru.net/img/guru/count-o-mat.jpg" alt="counter" /&gt;&lt;/p&gt;

&lt;p&gt;i really like the "frankenstein"-look of the eclosure :-)&lt;/p&gt;
</content>
  </entry>
  <entry>
    <id>tag:www.local-guru.net,2005:Article/183</id>
    <published>2009-07-03T08:37:00+02:00</published>
    <updated>2009-07-03T08:37:00+02:00</updated>
    <link type="text/html" href="http://www.local-guru.net//blog/2009/7/3/arduino-based-office-wtf-counter" rel="alternate"/>
    <author>
      <name>Nikolaus Gradwohl</name>
    </author>
    <title type="html">Arduino based Office-WTF-Counter</title>
    <category term="processing" scheme="http://www.local-guru.net/blog/tag/processing"/>
    <category term="arduino" scheme="http://www.local-guru.net/blog/tag/arduino"/>
    <category term="python" scheme="http://www.local-guru.net/blog/tag/python"/>
    <category term="wtf" scheme="http://www.local-guru.net/blog/tag/wtf"/>
    <content type="html">&lt;p&gt;As in any office, my co-workers and I experience several WTF-Situations during our working day. So we decided to implement a
simple system to count the WTF's and use them as a metric for our working climate :-)&lt;/p&gt;

&lt;p&gt;we use an "emergency stop"-Button which is connected to an arduino. This arduino sends the string "WTF" on the serial line
a little python scrip writes them to a file, another processing app count's the lines in the file and offers the result
via http, which is read by a processing app for visualisation ...&lt;/p&gt;

&lt;p&gt;&lt;img src="http://www.local-guru.net/img/guru/wtf-button.jpg" alt="wtf-button" /&gt;&lt;/p&gt;

&lt;p&gt;&lt;img src="http://www.local-guru.net/img/guru/wtf-arduino.jpg" alt="wtf-arduino" /&gt;&lt;/p&gt;
</content>
  </entry>
  <entry>
    <id>tag:www.local-guru.net,2005:Article/148</id>
    <published>2009-04-06T13:41:00+02:00</published>
    <updated>2009-04-06T13:41:00+02:00</updated>
    <link type="text/html" href="http://www.local-guru.net//blog/2009/4/6/5x7-ledmatrix-shield" rel="alternate"/>
    <author>
      <name>Nikolaus Gradwohl</name>
    </author>
    <title type="html">5x7-ledmatrix-shield</title>
    <category term="Ledmatrix" scheme="http://www.local-guru.net/blog/tag/ledmatrix"/>
    <category term="arduino" scheme="http://www.local-guru.net/blog/tag/arduino"/>
    <content type="html">&lt;p&gt;I managed to solder the 5x7-ledmatrix &lt;a href="http://www.local-guru.net/blog/2009/04/03/5x7-led-matrix-on-my-arduino"&gt;i wrote about some days ago&lt;/a&gt; to a arduino-proto-shield
(without any injuries or short cuts - i am sooo proud :-))&lt;/p&gt;

&lt;p&gt;now it looks really fancy (well the upper side at least)&lt;/p&gt;

&lt;p&gt;&lt;img src="http://www.local-guru.net/img/guru/ledshield.jpg" alt="ledmatrix" /&gt;&lt;/p&gt;

&lt;p&gt;&lt;img src="http://www.local-guru.net/img/guru/ledshield_back.jpg" alt="ledmatrix back" /&gt;&lt;/p&gt;
</content>
  </entry>
  <entry>
    <id>tag:www.local-guru.net,2005:Article/146</id>
    <published>2009-04-03T06:36:00+02:00</published>
    <updated>2009-04-03T06:36:00+02:00</updated>
    <link type="text/html" href="http://www.local-guru.net//blog/2009/4/3/5x7-led-matrix-on-my-arduino" rel="alternate"/>
    <author>
      <name>Nikolaus Gradwohl</name>
    </author>
    <title type="html">5x7 LED Matrix on my arduino</title>
    <category term="Ledmatrix" scheme="http://www.local-guru.net/blog/tag/ledmatrix"/>
    <category term="arduino" scheme="http://www.local-guru.net/blog/tag/arduino"/>
    <content type="html">&lt;p&gt;I just hooked up my 5x7 led matrix to an arduino :-)&lt;/p&gt;

&lt;p&gt;very cool, i use the led matrix without any other parts as shown in the &lt;a href="http://www.arduino.cc/playground/Main/DirectDriveLEDMatrix"&gt;arduino playground&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;the next thing i want to do is solder it to one of my protoshields&lt;/p&gt;

&lt;p&gt;(ignore the right part of the circuit, it is a currency regulator from another project, but i had no empty breadboards left  :-))&lt;/p&gt;

&lt;p&gt;&lt;img src="http://www.local-guru.net/img/guru/ledmatrix.png" alt="ledmatrix" /&gt;&lt;/p&gt;
</content>
  </entry>
</feed>

