<?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>digital things and physical computing &#187; campusparty09</title>
	<atom:link href="http://ericholm.nl/blog/tag/campusparty09/feed/" rel="self" type="application/rss+xml" />
	<link>http://ericholm.nl/blog</link>
	<description>things, tinkering and thougths by eric</description>
	<lastBuildDate>Fri, 04 Jun 2010 14:58:23 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Video: Gyro at Campus Party</title>
		<link>http://ericholm.nl/blog/2009/08/video-gyro-at-campus-party/</link>
		<comments>http://ericholm.nl/blog/2009/08/video-gyro-at-campus-party/#comments</comments>
		<pubDate>Thu, 20 Aug 2009 16:50:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Gyro powerball game]]></category>
		<category><![CDATA[campusparty09]]></category>
		<category><![CDATA[gyro]]></category>

		<guid isPermaLink="false">http://ericholm.nl/blog/?p=163</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><object width="480" height="295><param name="movie" value="http://www.youtube.com/v/9BaOaBKQvvY&#038;hl=en&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/9BaOaBKQvvY&#038;hl=en&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="295"></embed></object><br />
Video I shot during the Campus Party in Valencia</p>
]]></content:encoded>
			<wfw:commentRss>http://ericholm.nl/blog/2009/08/video-gyro-at-campus-party/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Liquid tester</title>
		<link>http://ericholm.nl/blog/2009/08/liquid-tester/</link>
		<comments>http://ericholm.nl/blog/2009/08/liquid-tester/#comments</comments>
		<pubDate>Sat, 15 Aug 2009 16:04:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[arduino]]></category>
		<category><![CDATA[processing]]></category>
		<category><![CDATA[campusparty09]]></category>
		<category><![CDATA[source code]]></category>

		<guid isPermaLink="false">http://ericholm.nl/blog/?p=146</guid>
		<description><![CDATA[At the &#8216;Campus Party&#8216; in Valencia I gave an Arduino introduction workshop, and there were some very good results. Juan Ferrer and Jorge Cases built a liquid tester, with only two wires and a resistor, which can measure the resistance of a liquid. Because every liquid has a different resistance you can separate different drinks [...]]]></description>
			<content:encoded><![CDATA[<p>At the &#8216;<a href="http://campus-party.es">Campus Party</a>&#8216; in Valencia I gave an Arduino introduction workshop, and there were some very good results.</p>
<p>Juan Ferrer and Jorge Cases built a liquid tester, with only two wires and a resistor, which can measure the resistance of a liquid. Because every liquid has a different resistance you can separate different drinks like water or orange juice. With some <a href="http://processing.org">Processing</a> <a href="wp-content/uploads/2009/08/liquidtestProcessing.zip">code</a> you can do something nice with those values.</p>
<p><object width="480" height="295"><param name="movie" value="http://www.youtube.com/v/FsKtga3V3DE&#038;hl=en&#038;fs=1&#038;rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/FsKtga3V3DE&#038;hl=en&#038;fs=1&#038;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="295"></embed></object></p>
<p><strong>How to make your own liquid tester:</strong><br />
You need an Arduino, some wires and a 10K resistor.<br />
Upload the standardFirmata to the Arduino, read <a href="http://www.arduino.cc/playground/Interfacing/Processing">this</a> for more info.<br />
<span id="more-146"></span><br />
<img src="http://ericholm.nl/blog/wp-content/uploads/2009/08/liquid-test-150x150.jpg" alt="liquid tester" title="liquid tester" width="150" height="150" class="alignnone size-thumbnail wp-image-149" /></p>
<pre class="brush: cpp;">
// Detector de Liquidos (Liquid Detector)
// By Juan Ferrer and Jorge Cases
// open this file in Processing and upload the Standard Firmata to your Arduino
// connect the wires to the analog input port number 0

import processing.serial.*;
import cc.arduino.*;

Arduino arduino;

color off = color(4, 79, 111);
color on = color(84, 145, 158);

color blueColor = color(0,0,250);
color orangeColor = color(255,128,0);

int heightVal = 280;
int widthVal = 470;
int adjust = 20;
PFont fontA;

void drawGraph() {
  line(adjust,adjust,adjust,heightVal-(adjust*2));
  line(adjust,heightVal-(adjust*2),widthVal-(adjust*2),heightVal-(adjust*2));
}

void setup() {
  size(widthVal, heightVal);
  arduino = new Arduino(this, Arduino.list()[0], 115200);
  fontA = loadFont(&quot;CourierNew36.vlw&quot;);
  textFont(fontA, 32);
}

void draw() {
  background(off);
  stroke(on);

  drawGraph();
  int value = arduino.analogRead(0);

  if (value &lt; 980 &amp;&amp; value &gt; 900) {
    fill(blueColor);
    text(&quot;this is water&quot;, 200, 90);
  } else if (value&lt;800 &amp;&amp; value &gt; 700) {
    fill(orangeColor);
    text(&quot;this is orange juice&quot;, 200, 90);
  }
  else {
    fill(off);
    text(&quot;&quot;, 200, 90);
  }
  println(value);
  rect(adjust,heightVal-(adjust*2),50,-(heightVal-(adjust*2))*value/1024);
  delay(500);
}
</pre>
<p><a href="/blog/wp-content/uploads/2009/08/liquidtestProcessing.zip">download processing.org code</a></p>
]]></content:encoded>
			<wfw:commentRss>http://ericholm.nl/blog/2009/08/liquid-tester/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Gyro at Campus Party &#8217;09 Valencia</title>
		<link>http://ericholm.nl/blog/2009/08/gyro-at-campus-party-09-valencia/</link>
		<comments>http://ericholm.nl/blog/2009/08/gyro-at-campus-party-09-valencia/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 13:02:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Gyro powerball game]]></category>
		<category><![CDATA[campusparty09]]></category>
		<category><![CDATA[gyro]]></category>

		<guid isPermaLink="false">http://ericholm.nl/blog/?p=138</guid>
		<description><![CDATA[Sorry for posting this a bit late, but it was a very busy week. I was invited at Campus Party &#8217;09 in Valencia to show my Powerball game Gyro. Campus party is the biggest technology event in the world, it is sort of an oversized LAN-party with more than 6000 geeks. Besides sitting in front [...]]]></description>
			<content:encoded><![CDATA[<p>Sorry for posting this a bit late, but it was a very busy week.<br />
I was invited at <a href="http://campus-party.es">Campus Party &#8217;09</a> in Valencia to show my Powerball game <a href="http://ericholm.nl/gyro">Gyro</a>. </p>
<p>Campus party is the biggest technology event in the world, it is sort of an oversized LAN-party with more than 6000 geeks. Besides sitting in front of your computer and playing games you can also attend some workshops and listen to various speakers. The Campus Party was held in one of the beautiful buildings from &#8216;<a href="http://en.wikipedia.org/wiki/Ciutat_de_les_Arts_i_les_Ci%C3%A8ncies">Ciudad de las Artes y las Ciencias</a> &#8216; (city of arts and sciences).</p>
<p>The part of Campus Party where the interactive installations were shown was the &#8216;<a href="http://www.campus-party.es/index.php/campusfuturo.html">Campus Futuro</a>&#8216; section, there were some other cool interactive projects like the <a href="http://www.wiispray.com/">Wiispray</a>, <a href="http://blog.campus-party.es/?p=841">Move</a> and some <a href="http://www.aldebaran-robotics.com/eng/index.php">robots</a>. The entry was free to this section so a lot of people entered.</p>
<p>The building was open from 10:00 till 21:00 seven days a week. It was a good test case to see how Gyro worked under these &#8216;extreme&#8217; conditions. Although it still is a prototype, it worked quite well and was easy to fix the problems which occurred.<br />
It was a great week and I&#8217;am full of ideas and improvements for the next version of Gyro.</p>

<a href='http://ericholm.nl/blog/2009/08/gyro-at-campus-party-09-valencia/campusparty/' title='campusparty'><img width="150" height="150" src="http://ericholm.nl/blog/wp-content/uploads/2009/08/campusparty-150x150.jpg" class="attachment-thumbnail" alt="campus party valencia" title="campusparty" /></a>
<a href='http://ericholm.nl/blog/2009/08/gyro-at-campus-party-09-valencia/entrance-campusfuturo/' title='entrance-campusfuturo'><img width="150" height="150" src="http://ericholm.nl/blog/wp-content/uploads/2009/08/entrance-campusfuturo-150x150.jpg" class="attachment-thumbnail" alt="entrance-campusfuturo" title="entrance-campusfuturo" /></a>
<a href='http://ericholm.nl/blog/2009/08/gyro-at-campus-party-09-valencia/gyro-campusfuturo/' title='gyro-campusfuturo'><img width="150" height="150" src="http://ericholm.nl/blog/wp-content/uploads/2009/08/gyro-campusfuturo-150x150.jpg" class="attachment-thumbnail" alt="gyro-campusfuturo" title="gyro-campusfuturo" /></a>

]]></content:encoded>
			<wfw:commentRss>http://ericholm.nl/blog/2009/08/gyro-at-campus-party-09-valencia/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
