<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title></title>
	<atom:link href="http://gruppefem.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://gruppefem.wordpress.com</link>
	<description></description>
	<lastBuildDate>Wed, 11 Jun 2008 17:31:26 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='gruppefem.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/abab901f596d9c451232323b9a005ca0?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title></title>
		<link>http://gruppefem.wordpress.com</link>
	</image>
			<item>
		<title>SRF08 sensor code</title>
		<link>http://gruppefem.wordpress.com/2008/06/11/srf08-sensor-code/</link>
		<comments>http://gruppefem.wordpress.com/2008/06/11/srf08-sensor-code/#comments</comments>
		<pubDate>Wed, 11 Jun 2008 17:24:35 +0000</pubDate>
		<dc:creator>acesee</dc:creator>
				<category><![CDATA[process]]></category>

		<guid isPermaLink="false">http://gruppefem.wordpress.com/?p=185</guid>
		<description><![CDATA[There are a number of Arduino code examples out there to hook up a Devantech Ultrasonic SRF08 sensor, however only one (found here), that I saw, clearly shows how to change the two main customizable features; the analog gain, and the range. However, after much trouble shooting it was discovered that there are a few [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gruppefem.wordpress.com&blog=3572875&post=185&subd=gruppefem&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>There are a number of Arduino code examples out there to hook up a Devantech Ultrasonic SRF08 sensor, however only one (<a href="http://itp.nyu.edu/~jtd229/physcomp/2006/11/srf_range_finders_with_arduino.html" target="_blank">found here</a>), that I saw, clearly shows how to change the two main customizable features; the analog gain, and the range. However, after much trouble shooting it was discovered that there are a few typos in the code sections referring changing these options.</p>
<p>The full spec sheet for the SRF08 can be found <a href="http://www.robot-electronics.co.uk/htm/srf08tech.shtml">here</a> on the Robot Electronics website. This page shows the correct addresses and codes to properly communicate with it. The example Arduino code from the website above makes a few mistakes with reference to these numbers.</p>
<p>One under the &#8220;sensitivity adjust&#8221; section when sending the analog gain code to address 01. The current 0&#215;21 is not a valid &#8220;gain hex register&#8221; according to the spec sheet. I changed it to 0&#215;00 giving it a max gain of 94.</p>
<p>There&#8217;s also a mistake under the &#8220;range select&#8221; section where it needs to call address 2 to write the hex to, however it&#8217;s written as 0&#215;20 instead of 0&#215;02. Then the next line, sending 0&#215;00, will give it a range of 43mm. This can be changed to any number of options as found on the spec sheet. Typing 0&#215;8C will give it it&#8217;s maximum 6m range.</p>
<p>In addition, comments under both sections referring to &#8220;0&#215;51 centimeters&#8221; and &#8220;0&#215;52 ping seconds&#8221; are not relevent in this specific case. The section to change the feedback (what it measures in) is done in step 1 of the code, where these same comments then appear again.</p>
<p>Here is the code I used with the appropriate edits. Also, I made them both functions that I could call just in order to clean up the actual process loop.</p>
<blockquote><p>//setSensitivity() sets the max range<br />
void setSensitivity(int address){<br />
//start i2c transmission<br />
Wire.beginTransmission(address);</p>
<p>//send command<br />
Wire.send(0&#215;01); //set to reg1<br />
Wire.send(0&#215;00); //hex code for sensitity (0&#215;00 = 94)</p>
<p>//end i2c trans<br />
Wire.endTransmission();<br />
}</p>
<p>//setRange() sets the max range<br />
void setRange(int address){<br />
//start i2c transmission<br />
Wire.beginTransmission(address);</p>
<p>//send command<br />
Wire.send(0&#215;02); //set to reg2<br />
Wire.send(0xFF); //hex code for range (0xFF = max avail)</p>
<p>//end i2c trans<br />
Wire.endTransmission();<br />
}</p></blockquote>
<p>/AB</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gruppefem.wordpress.com/185/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gruppefem.wordpress.com/185/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gruppefem.wordpress.com/185/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gruppefem.wordpress.com/185/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gruppefem.wordpress.com/185/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gruppefem.wordpress.com/185/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gruppefem.wordpress.com/185/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gruppefem.wordpress.com/185/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gruppefem.wordpress.com/185/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gruppefem.wordpress.com/185/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gruppefem.wordpress.com/185/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gruppefem.wordpress.com/185/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gruppefem.wordpress.com&blog=3572875&post=185&subd=gruppefem&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://gruppefem.wordpress.com/2008/06/11/srf08-sensor-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/929e7c137090ce47366dcb588837b42f?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">acesee</media:title>
		</media:content>
	</item>
		<item>
		<title>reflection in front of the school</title>
		<link>http://gruppefem.wordpress.com/2008/06/10/reflection-in-front-of-the-school/</link>
		<comments>http://gruppefem.wordpress.com/2008/06/10/reflection-in-front-of-the-school/#comments</comments>
		<pubDate>Tue, 10 Jun 2008 17:23:03 +0000</pubDate>
		<dc:creator>danielronge</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[model]]></category>

		<guid isPermaLink="false">http://gruppefem.wordpress.com/?p=184</guid>
		<description><![CDATA[
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gruppefem.wordpress.com&blog=3572875&post=184&subd=gruppefem&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><span style="text-align:center; display: block;"><a href="http://gruppefem.wordpress.com/2008/06/10/reflection-in-front-of-the-school/"><img src="http://img.youtube.com/vi/Wnxo0MyYFzU/2.jpg" alt="" /></a></span></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gruppefem.wordpress.com/184/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gruppefem.wordpress.com/184/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gruppefem.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gruppefem.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gruppefem.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gruppefem.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gruppefem.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gruppefem.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gruppefem.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gruppefem.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gruppefem.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gruppefem.wordpress.com/184/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gruppefem.wordpress.com&blog=3572875&post=184&subd=gruppefem&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://gruppefem.wordpress.com/2008/06/10/reflection-in-front-of-the-school/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/29940c6069c9ed1a7f250afb6e97f9ff?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">danielronge</media:title>
		</media:content>

		<media:content url="http://img.youtube.com/vi/Wnxo0MyYFzU/2.jpg" medium="image" />
	</item>
		<item>
		<title>top mirror in action</title>
		<link>http://gruppefem.wordpress.com/2008/06/10/top-mirror-in-action/</link>
		<comments>http://gruppefem.wordpress.com/2008/06/10/top-mirror-in-action/#comments</comments>
		<pubDate>Tue, 10 Jun 2008 17:19:44 +0000</pubDate>
		<dc:creator>danielronge</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[model]]></category>

		<guid isPermaLink="false">http://gruppefem.wordpress.com/?p=183</guid>
		<description><![CDATA[
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gruppefem.wordpress.com&blog=3572875&post=183&subd=gruppefem&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><span style="text-align:center; display: block;"><a href="http://gruppefem.wordpress.com/2008/06/10/top-mirror-in-action/"><img src="http://img.youtube.com/vi/U0kc0--ocfw/2.jpg" alt="" /></a></span></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gruppefem.wordpress.com/183/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gruppefem.wordpress.com/183/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gruppefem.wordpress.com/183/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gruppefem.wordpress.com/183/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gruppefem.wordpress.com/183/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gruppefem.wordpress.com/183/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gruppefem.wordpress.com/183/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gruppefem.wordpress.com/183/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gruppefem.wordpress.com/183/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gruppefem.wordpress.com/183/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gruppefem.wordpress.com/183/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gruppefem.wordpress.com/183/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gruppefem.wordpress.com&blog=3572875&post=183&subd=gruppefem&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://gruppefem.wordpress.com/2008/06/10/top-mirror-in-action/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/29940c6069c9ed1a7f250afb6e97f9ff?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">danielronge</media:title>
		</media:content>

		<media:content url="http://img.youtube.com/vi/U0kc0--ocfw/2.jpg" medium="image" />
	</item>
		<item>
		<title>building the model (on the roof!)</title>
		<link>http://gruppefem.wordpress.com/2008/06/10/building-the-model-on-the-roof/</link>
		<comments>http://gruppefem.wordpress.com/2008/06/10/building-the-model-on-the-roof/#comments</comments>
		<pubDate>Tue, 10 Jun 2008 17:05:23 +0000</pubDate>
		<dc:creator>danielronge</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[model]]></category>

		<guid isPermaLink="false">http://gruppefem.wordpress.com/?p=176</guid>
		<description><![CDATA[       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gruppefem.wordpress.com&blog=3572875&post=176&subd=gruppefem&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br />
<a href='http://gruppefem.wordpress.com/2008/06/10/building-the-model-on-the-roof/dsc04165/' title='dsc04165'><img width="128" height="96" src="http://gruppefem.files.wordpress.com/2008/06/dsc04165.jpg?w=128&#038;h=96" class="attachment-thumbnail" alt="" title="dsc04165" /></a>
<a href='http://gruppefem.wordpress.com/2008/06/10/building-the-model-on-the-roof/dsc04167/' title='dsc04167'><img width="72" height="96" src="http://gruppefem.files.wordpress.com/2008/06/dsc04167.jpg?w=72&#038;h=96" class="attachment-thumbnail" alt="" title="dsc04167" /></a>
<a href='http://gruppefem.wordpress.com/2008/06/10/building-the-model-on-the-roof/dsc04169/' title='dsc04169'><img width="72" height="96" src="http://gruppefem.files.wordpress.com/2008/06/dsc04169.jpg?w=72&#038;h=96" class="attachment-thumbnail" alt="" title="dsc04169" /></a>
<a href='http://gruppefem.wordpress.com/2008/06/10/building-the-model-on-the-roof/dsc04171/' title='dsc04171'><img width="128" height="96" src="http://gruppefem.files.wordpress.com/2008/06/dsc04171.jpg?w=128&#038;h=96" class="attachment-thumbnail" alt="" title="dsc04171" /></a>
<a href='http://gruppefem.wordpress.com/2008/06/10/building-the-model-on-the-roof/dsc04172/' title='dsc04172'><img width="128" height="96" src="http://gruppefem.files.wordpress.com/2008/06/dsc04172.jpg?w=128&#038;h=96" class="attachment-thumbnail" alt="" title="dsc04172" /></a>
<a href='http://gruppefem.wordpress.com/2008/06/10/building-the-model-on-the-roof/dsc04173/' title='dsc04173'><img width="128" height="96" src="http://gruppefem.files.wordpress.com/2008/06/dsc04173.jpg?w=128&#038;h=96" class="attachment-thumbnail" alt="" title="dsc04173" /></a>

<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gruppefem.wordpress.com/176/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gruppefem.wordpress.com/176/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gruppefem.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gruppefem.wordpress.com/176/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gruppefem.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gruppefem.wordpress.com/176/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gruppefem.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gruppefem.wordpress.com/176/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gruppefem.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gruppefem.wordpress.com/176/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gruppefem.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gruppefem.wordpress.com/176/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gruppefem.wordpress.com&blog=3572875&post=176&subd=gruppefem&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://gruppefem.wordpress.com/2008/06/10/building-the-model-on-the-roof/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/29940c6069c9ed1a7f250afb6e97f9ff?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">danielronge</media:title>
		</media:content>
	</item>
		<item>
		<title>designs II</title>
		<link>http://gruppefem.wordpress.com/2008/06/10/designs-ii/</link>
		<comments>http://gruppefem.wordpress.com/2008/06/10/designs-ii/#comments</comments>
		<pubDate>Tue, 10 Jun 2008 16:59:41 +0000</pubDate>
		<dc:creator>danielronge</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[design]]></category>

		<guid isPermaLink="false">http://gruppefem.wordpress.com/?p=172</guid>
		<description><![CDATA[the two options
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gruppefem.wordpress.com&blog=3572875&post=172&subd=gruppefem&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br />
<a href='http://gruppefem.wordpress.com/2008/06/10/designs-ii/finallight/' title='finallight'><img width="128" height="90" src="http://gruppefem.files.wordpress.com/2008/06/finallight.jpg?w=128&#038;h=90" class="attachment-thumbnail" alt="" title="finallight" /></a>
<a href='http://gruppefem.wordpress.com/2008/06/10/designs-ii/finallight2/' title='finallight2'><img width="128" height="90" src="http://gruppefem.files.wordpress.com/2008/06/finallight2.jpg?w=128&#038;h=90" class="attachment-thumbnail" alt="" title="finallight2" /></a>

<p>the two options</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gruppefem.wordpress.com/172/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gruppefem.wordpress.com/172/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gruppefem.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gruppefem.wordpress.com/172/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gruppefem.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gruppefem.wordpress.com/172/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gruppefem.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gruppefem.wordpress.com/172/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gruppefem.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gruppefem.wordpress.com/172/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gruppefem.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gruppefem.wordpress.com/172/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gruppefem.wordpress.com&blog=3572875&post=172&subd=gruppefem&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://gruppefem.wordpress.com/2008/06/10/designs-ii/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/29940c6069c9ed1a7f250afb6e97f9ff?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">danielronge</media:title>
		</media:content>
	</item>
		<item>
		<title>building the model (on the ground)</title>
		<link>http://gruppefem.wordpress.com/2008/06/10/building-the-model-on-the-ground/</link>
		<comments>http://gruppefem.wordpress.com/2008/06/10/building-the-model-on-the-ground/#comments</comments>
		<pubDate>Tue, 10 Jun 2008 16:54:08 +0000</pubDate>
		<dc:creator>danielronge</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[model]]></category>

		<guid isPermaLink="false">http://gruppefem.wordpress.com/?p=165</guid>
		<description><![CDATA[       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gruppefem.wordpress.com&blog=3572875&post=165&subd=gruppefem&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br />
<a href='http://gruppefem.wordpress.com/2008/06/10/building-the-model-on-the-ground/dsc04082/' title='dsc04082'><img width="128" height="96" src="http://gruppefem.files.wordpress.com/2008/06/dsc04082.jpg?w=128&#038;h=96" class="attachment-thumbnail" alt="" title="dsc04082" /></a>
<a href='http://gruppefem.wordpress.com/2008/06/10/building-the-model-on-the-ground/dsc04108/' title='dsc04108'><img width="72" height="96" src="http://gruppefem.files.wordpress.com/2008/06/dsc04108.jpg?w=72&#038;h=96" class="attachment-thumbnail" alt="" title="dsc04108" /></a>
<a href='http://gruppefem.wordpress.com/2008/06/10/building-the-model-on-the-ground/dsc04123/' title='dsc04123'><img width="72" height="96" src="http://gruppefem.files.wordpress.com/2008/06/dsc04123.jpg?w=72&#038;h=96" class="attachment-thumbnail" alt="" title="dsc04123" /></a>
<a href='http://gruppefem.wordpress.com/2008/06/10/building-the-model-on-the-ground/dsc04124/' title='dsc04124'><img width="72" height="96" src="http://gruppefem.files.wordpress.com/2008/06/dsc04124.jpg?w=72&#038;h=96" class="attachment-thumbnail" alt="" title="dsc04124" /></a>
<a href='http://gruppefem.wordpress.com/2008/06/10/building-the-model-on-the-ground/dsc04126/' title='dsc04126'><img width="72" height="96" src="http://gruppefem.files.wordpress.com/2008/06/dsc04126.jpg?w=72&#038;h=96" class="attachment-thumbnail" alt="" title="dsc04126" /></a>
<a href='http://gruppefem.wordpress.com/2008/06/10/building-the-model-on-the-ground/dsc04127/' title='dsc04127'><img width="72" height="96" src="http://gruppefem.files.wordpress.com/2008/06/dsc04127.jpg?w=72&#038;h=96" class="attachment-thumbnail" alt="" title="dsc04127" /></a>

<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gruppefem.wordpress.com/165/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gruppefem.wordpress.com/165/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gruppefem.wordpress.com/165/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gruppefem.wordpress.com/165/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gruppefem.wordpress.com/165/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gruppefem.wordpress.com/165/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gruppefem.wordpress.com/165/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gruppefem.wordpress.com/165/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gruppefem.wordpress.com/165/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gruppefem.wordpress.com/165/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gruppefem.wordpress.com/165/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gruppefem.wordpress.com/165/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gruppefem.wordpress.com&blog=3572875&post=165&subd=gruppefem&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://gruppefem.wordpress.com/2008/06/10/building-the-model-on-the-ground/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/29940c6069c9ed1a7f250afb6e97f9ff?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">danielronge</media:title>
		</media:content>
	</item>
		<item>
		<title>different designs</title>
		<link>http://gruppefem.wordpress.com/2008/06/10/different-designs/</link>
		<comments>http://gruppefem.wordpress.com/2008/06/10/different-designs/#comments</comments>
		<pubDate>Tue, 10 Jun 2008 16:48:30 +0000</pubDate>
		<dc:creator>danielronge</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[design]]></category>

		<guid isPermaLink="false">http://gruppefem.wordpress.com/?p=161</guid>
		<description><![CDATA[first design steps
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gruppefem.wordpress.com&blog=3572875&post=161&subd=gruppefem&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br />
<a href='http://gruppefem.wordpress.com/2008/06/10/different-designs/rods-1-2/' title='rods-1'><img width="128" height="87" src="http://gruppefem.files.wordpress.com/2008/06/rods-1.jpg?w=128&#038;h=87" class="attachment-thumbnail" alt="" title="rods-1" /></a>
<a href='http://gruppefem.wordpress.com/2008/06/10/different-designs/tube-2/' title='tube'><img width="128" height="89" src="http://gruppefem.files.wordpress.com/2008/06/tube.jpg?w=128&#038;h=89" class="attachment-thumbnail" alt="" title="tube" /></a>
<a href='http://gruppefem.wordpress.com/2008/06/10/different-designs/organic-2/' title='organic'><img src="http://gruppefem.files.wordpress.com/2008/06/organic.jpg" class="attachment-thumbnail" alt="" title="organic" /></a>

<p>first design steps</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gruppefem.wordpress.com/161/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gruppefem.wordpress.com/161/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gruppefem.wordpress.com/161/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gruppefem.wordpress.com/161/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gruppefem.wordpress.com/161/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gruppefem.wordpress.com/161/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gruppefem.wordpress.com/161/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gruppefem.wordpress.com/161/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gruppefem.wordpress.com/161/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gruppefem.wordpress.com/161/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gruppefem.wordpress.com/161/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gruppefem.wordpress.com/161/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gruppefem.wordpress.com&blog=3572875&post=161&subd=gruppefem&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://gruppefem.wordpress.com/2008/06/10/different-designs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/29940c6069c9ed1a7f250afb6e97f9ff?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">danielronge</media:title>
		</media:content>
	</item>
		<item>
		<title>Prototyping code</title>
		<link>http://gruppefem.wordpress.com/2008/05/23/prototyping-code/</link>
		<comments>http://gruppefem.wordpress.com/2008/05/23/prototyping-code/#comments</comments>
		<pubDate>Fri, 23 May 2008 12:56:53 +0000</pubDate>
		<dc:creator>acesee</dc:creator>
				<category><![CDATA[process]]></category>

		<guid isPermaLink="false">http://gruppefem.wordpress.com/?p=159</guid>
		<description><![CDATA[
Written in Processing&#8230; demonstartes the basic interaction using the keyboard as a trigger and a black-line as the output. Next step, after refinement, is to make an ultrasound sensor the trigger and a servo motor the output.
/AB
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gruppefem.wordpress.com&blog=3572875&post=159&subd=gruppefem&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://gruppefem.files.wordpress.com/2008/05/picture-1.png"><img class="alignnone size-medium wp-image-160" src="http://gruppefem.files.wordpress.com/2008/05/picture-1.png?w=300&#038;h=187" alt="" width="300" height="187" /></a></p>
<p>Written in Processing&#8230; demonstartes the basic interaction using the keyboard as a trigger and a black-line as the output. Next step, after refinement, is to make an ultrasound sensor the trigger and a servo motor the output.</p>
<p>/AB</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gruppefem.wordpress.com/159/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gruppefem.wordpress.com/159/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gruppefem.wordpress.com/159/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gruppefem.wordpress.com/159/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gruppefem.wordpress.com/159/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gruppefem.wordpress.com/159/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gruppefem.wordpress.com/159/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gruppefem.wordpress.com/159/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gruppefem.wordpress.com/159/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gruppefem.wordpress.com/159/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gruppefem.wordpress.com/159/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gruppefem.wordpress.com/159/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gruppefem.wordpress.com&blog=3572875&post=159&subd=gruppefem&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://gruppefem.wordpress.com/2008/05/23/prototyping-code/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/929e7c137090ce47366dcb588837b42f?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">acesee</media:title>
		</media:content>

		<media:content url="http://gruppefem.files.wordpress.com/2008/05/picture-1.png?w=300" medium="image" />
	</item>
		<item>
		<title>Experimenting</title>
		<link>http://gruppefem.wordpress.com/2008/05/21/experimenting/</link>
		<comments>http://gruppefem.wordpress.com/2008/05/21/experimenting/#comments</comments>
		<pubDate>Wed, 21 May 2008 08:11:14 +0000</pubDate>
		<dc:creator>edinbosnjak</dc:creator>
				<category><![CDATA[research]]></category>

		<guid isPermaLink="false">http://gruppefem.wordpress.com/?p=156</guid>
		<description><![CDATA[       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gruppefem.wordpress.com&blog=3572875&post=156&subd=gruppefem&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br />
<a href='http://gruppefem.wordpress.com/2008/05/21/experimenting/dsc00651/' title='dsc00651'><img width="128" height="96" src="http://gruppefem.files.wordpress.com/2008/05/dsc00651.jpg?w=128&#038;h=96" class="attachment-thumbnail" alt="" title="dsc00651" /></a>
<a href='http://gruppefem.wordpress.com/2008/05/21/experimenting/dsc00652/' title='dsc00652'><img width="128" height="96" src="http://gruppefem.files.wordpress.com/2008/05/dsc00652.jpg?w=128&#038;h=96" class="attachment-thumbnail" alt="" title="dsc00652" /></a>

<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gruppefem.wordpress.com/156/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gruppefem.wordpress.com/156/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gruppefem.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gruppefem.wordpress.com/156/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gruppefem.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gruppefem.wordpress.com/156/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gruppefem.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gruppefem.wordpress.com/156/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gruppefem.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gruppefem.wordpress.com/156/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gruppefem.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gruppefem.wordpress.com/156/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gruppefem.wordpress.com&blog=3572875&post=156&subd=gruppefem&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://gruppefem.wordpress.com/2008/05/21/experimenting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/705dc25390b5c323396f967dffafa194?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">edinbosnjak</media:title>
		</media:content>
	</item>
		<item>
		<title>EAP aka artificial muscles</title>
		<link>http://gruppefem.wordpress.com/2008/05/18/eap-aka-artificial-muscles/</link>
		<comments>http://gruppefem.wordpress.com/2008/05/18/eap-aka-artificial-muscles/#comments</comments>
		<pubDate>Sun, 18 May 2008 15:39:33 +0000</pubDate>
		<dc:creator>danielronge</dc:creator>
				<category><![CDATA[inspiration]]></category>
		<category><![CDATA[research]]></category>
		<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://gruppefem.wordpress.com/?p=155</guid>
		<description><![CDATA[maybe we can use this instead of motors and stuff:

also check: http://eap.jpl.nasa.gov/
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gruppefem.wordpress.com&blog=3572875&post=155&subd=gruppefem&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>maybe we can use this instead of motors and stuff:</p>
<p><span style="text-align:center; display: block;"><a href="http://gruppefem.wordpress.com/2008/05/18/eap-aka-artificial-muscles/"><img src="http://img.youtube.com/vi/hyycT2IMONk/2.jpg" alt="" /></a></span></p>
<p>also check: <a href="http://eap.jpl.nasa.gov/">http://eap.jpl.nasa.gov/</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gruppefem.wordpress.com/155/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gruppefem.wordpress.com/155/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gruppefem.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gruppefem.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gruppefem.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gruppefem.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gruppefem.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gruppefem.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gruppefem.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gruppefem.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gruppefem.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gruppefem.wordpress.com/155/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gruppefem.wordpress.com&blog=3572875&post=155&subd=gruppefem&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://gruppefem.wordpress.com/2008/05/18/eap-aka-artificial-muscles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/29940c6069c9ed1a7f250afb6e97f9ff?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">danielronge</media:title>
		</media:content>

		<media:content url="http://img.youtube.com/vi/hyycT2IMONk/2.jpg" medium="image" />
	</item>
	</channel>
</rss>