<?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>RobotGrrl.com &#187; BubbleBoy</title>
	<atom:link href="http://robotgrrl.com/blog/tag/bubbleboy/feed/" rel="self" type="application/rss+xml" />
	<link>http://robotgrrl.com/blog</link>
	<description>ethical robots that bring smiles</description>
	<lastBuildDate>Thu, 09 Sep 2010 16:40:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>FNR &#8211; BubbleBoy Behaviour AI</title>
		<link>http://robotgrrl.com/blog/2010/07/12/fnr-bubbleboy-behaviour-ai/</link>
		<comments>http://robotgrrl.com/blog/2010/07/12/fnr-bubbleboy-behaviour-ai/#comments</comments>
		<pubDate>Mon, 12 Jul 2010 15:10:18 +0000</pubDate>
		<dc:creator>Erin, the RobotGrrl</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[Robot]]></category>
		<category><![CDATA[AI]]></category>
		<category><![CDATA[bayes]]></category>
		<category><![CDATA[Bayes Filter]]></category>
		<category><![CDATA[bayes filter algorithm]]></category>
		<category><![CDATA[Behaviour]]></category>
		<category><![CDATA[BubbleBoy]]></category>
		<category><![CDATA[flowchart]]></category>
		<category><![CDATA[food]]></category>
		<category><![CDATA[water]]></category>

		<guid isPermaLink="false">http://robotgrrl.com/blog/?p=1633</guid>
		<description><![CDATA[This week and this Friday Night Robotics I was working on a behaviour AI for the newly refurbished BubbleBoy! It is much easier to design an AI that you know will be interactable with thew orld! Without the headbobbing capability of BubbleBoy, this effort would not be worth it. BubbleBoy&#8217;s behaviour is primarily focused on [...]]]></description>
			<content:encoded><![CDATA[<p>This week and this Friday Night Robotics I was working on a behaviour AI for the newly refurbished BubbleBoy! It is much easier to design an AI that you know will be interactable with thew orld! Without the headbobbing capability of BubbleBoy, this effort would not be worth it. </p>
<p>BubbleBoy&#8217;s behaviour is primarily focused on food and water. BubbleBoy lives its anthropomorphized life <i>just</i> be be fed/watered! This means that BubbleBoy will want to know when it will expect to be fed, so that way it can headbob at the most optimal times. Being fed/watered is having a button pressed on BubbleBoy&#8217;s green stage area (the part with the blue and white LCD).</p>
<p>BubbleBoy will have three sensors, and a rudimentary measure time. The three sensors are the LDR, lid switch, and Xbee. All of these are onboard the robot (except for the Xbee which isn&#8217;t implemented yet).</p>
<p>Here&#8217;s a broad flowchart of the behaviour, which I will then explain below in detail.</p>
<p><center><a href="http://www.flickr.com/photos/robotgrrl/4786744498/" title="BubbleBoy Behaviour AI Flowchart by RobotGrrl, on Flickr"><img src="http://farm5.static.flickr.com/4135/4786744498_36ded3829e.jpg" width="500" height="500" alt="BubbleBoy Behaviour AI Flowchart"></a></center></p>
<ol>
<li>
<h3>Creating the Expectation</h3>
</li>
<p>This is the observatory phase. BubbleBoy initially does not have any expectation of when to be fed, so it waits around. While it is waiting, its collecting data from all of the sensors and storing them to an array. There has to be 10 numbers in the array for each sensor before BubbleBoy can proceed to the next stage, pattern finding. Once this is fulfilled, and if BubbleBoy is fed/watered, then it goes on to find a pattern.</p>
<li>
<h3>Pattern Finding</h3>
</li>
<p>BubbleBoy is seen as a simple robot. Thereby, its pattern finding is relatively simple as well. The main idea is to check each sensor&#8217;s array and see if there is a pattern within the residuals. Meaning, if looking for a sequential pattern, the array would be iterated through (starting at i=0, stopping after i=8), and i+1 would be subtracted from i. An average of the residual change would be calculated at the same time. The array would be iterated through again, this time to count how many items are within +- 10% of the residual average. If the count is above 7, then it is said that there is a sequential pattern in there.</p>
<p>The same process is done for a secondary pattern, and a &#8216;thirdary&#8217; pattern. Meaning, every 2nd number and 3rd number is checked to see if there is a pattern. It also goes through and checks with offsets, just incase the pattern is &#8220;even/odd/whatever&#8221;.</p>
<p>If there are no patterns, a random primary sensor is chosen for BubbleBoy to work with.</p>
<p>A problem exists in determining which pattern for which sensor to trust the most. A thirdary pattern for a photosensor is less dependable than a sequential pattern for a lid switch. This is handled in the next step.</p>
<li>
<h3>Determining the Sensor to Use</h3>
</li>
<p>The sensor with whatever pattern to follow is chosen through a Bayes Filter. This allows for a simple specification of confidence levels for a given sense resulting in a particular state through a table where all rows add up to 1.0. The sense columns are the sensor and pattern type. Meaning, there&#8217;s three sensors for every sensor, giving 9 senses in total. The states are confidence intervals. Anything >= 85 would be considered the most confident.</p>
<p><center><a href="http://spreadsheets.google.com/ccc?key=0Ato4VK268_GbdDJqZmZjVjNXUVFBSHI0aDdXLUlLYmc&#038;hl=en&#038;authkey=CPuAqsYG"><img src="http://farm5.static.flickr.com/4117/4785261276_23ed45c09b.jpg" width="500" height="119" alt="Bayes Filter AI Lookup Tables"></a></center></p>
<p>The numbers in bold are the ones that are more probable to be a result. A sensor in particular to look at is the Xbee for a thirdary pattern. The numbers are dispersed in such a way that it is almost a bimodal distribution. In order to understand why this is, imagine the scenario in real:</p>
<p>Xbee modems can communicate for up to a few meters. If BubbleBoy only receives a message every 3rd instance, it could either be a clever pattern, or it could be a miscommunication. </p>
<p>For this reason, the largest probability is given to the least confident state, and the second largest probability is given to the most confident state. It depends on the Bayes Filter and random roulette for what will actually be chosen.</p>
<p>This is just for determining what sensor is the most confident, that will provide the best result. This can mean that the chosen sensor will be followed, but it also may not. This will be explained in the next step.</p>
<li>
<h3>Calculating the Cost Adjustment</h3>
</li>
<p>The adjusted cost is determined by using the result from the previous step, and multiplying the probability by the inverse of whatever column it was situated in. In simpler terms, if the result was found in the best confidence interval state, then it would be multiplied by 5. If it was in ( 85, 70 ], it would be multiplied by 4&#8230;</p>
<p>This is then used as the sense for the next Bayes Filter. The state is how much of a cost to reduce the sense by.</p>
<p><center><a href=http://spreadsheets.google.com/ccc?key=0Ato4VK268_GbdEh6WXdqclducHFscktPcElkTllzTFE&#038;hl=en&#038;authkey=CK7RmesC"><img src="http://farm5.static.flickr.com/4117/4785261228_ce5b4c89b2.jpg" width="500" height="106" alt="Bayes Filter AI Lookup Tables"></a></center></p>
<p>Once the cost adjustment amount is determined, it is then subtracted from the cost of the particular sense&#8217;s cell. All of the senses are in a grid, with the most &#8220;primary&#8221; being the closest to BubbleBoy. An A* search is then used to choose the closest and least cost sensor. Once this is done, BubbleBoy can get on to entertaining its audience while waiting for food/water!</p>
<li>
<h3>Following the Expectation</h3>
</li>
<p>This is the main loop of the program. It&#8217;s where BubbleBoy is thinking in the present time about if it will be fed or not! <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>The key idea here is that BubbleBoy is thinking in the now. Meaning, it tracks the patterns differently than it does when it is reflecting back on them (in a &#8220;past&#8221; thought).</p>
<p>Sensor data is retrieved and placed into an array of size 10. The data at i is checked wither it is within +- 10% of the average in the pattern. The threshold percentage amount differs for the type of pattern, where secondary would be +- 20%, and thirdary would be +- 30%. If the data fits in to the check, then a &#8220;yes&#8221; counter is incremented.</p>
<p>Once the &#8220;yes&#8221; counter is >= 6, the food level will begin to decrease by (i/2)^2. At the same time, BubbleBoy will begin to show signs that he is excited to be fed/watered soon, by spinning its hat and bobbing its head.</p>
<p>If the &#8220;no&#8221; counter is >= 6, then it means that the expectation isn&#8217;t really working in the present thought. A flag is set to redo the expectation once BubbleBoy receives food and water.</p>
<p>i is then either incremented or reset to 0, depending if it hit 9 or not. (That&#8217;s a sort of obvious step)</p>
<li>
<h3> Real-World Behaviors</h3>
</li>
<p>When the time elapsed from not receiving food exceeds 150% of that of the observed elapsed time, BubbleBoy goes in to a &#8220;wallow&#8221; mode. When BubbleBoy is wallowing, it spins its hat slowly, and bobs rarely.</p>
<p>If the time elapsed is ( 150%, 100% ], BubbleBoy is &#8220;angry&#8221; because it did not receive its food exactly before the time elapsed. The hat will not spin, and BubbleBoy will bob side to side, and once (quickly) in the opposite axis to simulate a sort of &#8220;twitching&#8221; to all this anger!</p>
<p>If the time elapsed is ( 100%, 85% ], BubbleBoy is eager to please. Hat tricks will be common, same as delightful bobbing. Depending on how much food/water BubbleBoy has, it may also hoola hoop!</p>
<li>
<h3>Last part of Following the Expectation</h3>
</li>
<p>Depending on when BubbleBoy was fed, if it was in ( whatever, 100 ], the expectation will be done. Essentially, BubbleBoy is a positive/eager thinker that believes it should always be fed before the elapsed observed time. What an attitude!</p>
<p>If it is in [ 85, 100 ), then the expectation will be kept.</p>
<p>To reformulate the expectation, the previous steps are executed on the collected data. Then, everything repeats!
</ol>
<p>What will be super interesting to see, in my opinion, will be when the discrepancies occur from past thought to present thought. It will be interesting to see which sensors fare better through that transformation.</p>
<p>It will also be interesting to see if this actually can work on an Arduino, and not in simulation. I created a simulated version of BubbleBoy in Processing earlier in the week.</p>
<p><center><a href="http://www.flickr.com/photos/robotgrrl/4760811533/" title="Screen shot 2010-07-04 at 2.56.16 PM by RobotGrrl, on Flickr"><img src="http://farm5.static.flickr.com/4142/4760811533_acb312c77e.jpg" width="500" height="313" alt="Screen shot 2010-07-04 at 2.56.16 PM"></a></center></p>
<p>I&#8217;ll do the initial coding and testing through this simulation, mainly because I already coded the Bayes Filter Algorithm (with random roulette) in Processing from 2009 Honors Summer Research. <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  Plus, in Processing it is very simple to communicate to an Arduino through Firmata. I can read in the data from BubbleBoy through there.</p>
<p>Hopefully next Friday I will have devised a test sequence to test the soon-to-be-coded AI on. This will of course be Open Source, under the <a href="http://creativecommons.org/licenses/by-nc-sa/3.0/">Attribution-NonCommercial-ShareAlike 3.0 Unported License (BY-NC-SA)</a>.</p>
<p>Let me know what you think of this AI in the comment section below! (And yes I know it is very linear, but BubbleBoy doesn&#8217;t have enough DOF in the real world to spend the effort making the AI more nonlinear, since the observed result will essentially be the same!)</p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=FNR+%26%238211%3B+BubbleBoy+Behaviour+AI+http://is.gd/ezSC7" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/home/?status=FNR+%26%238211%3B+BubbleBoy+Behaviour+AI+http://is.gd/ezSC7" title=" "> </a> <a class="tt" href="http://delicious.com/post?url=http://robotgrrl.com/blog/2010/07/12/fnr-bubbleboy-behaviour-ai/&amp;title=FNR+%26%238211%3B+BubbleBoy+Behaviour+AI" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://robotgrrl.com/blog/2010/07/12/fnr-bubbleboy-behaviour-ai/&amp;title=FNR+%26%238211%3B+BubbleBoy+Behaviour+AI" title=" "> </a> <a class="tt" href="http://digg.com/submit?url=http://robotgrrl.com/blog/2010/07/12/fnr-bubbleboy-behaviour-ai/&amp;title=FNR+%26%238211%3B+BubbleBoy+Behaviour+AI" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://robotgrrl.com/blog/2010/07/12/fnr-bubbleboy-behaviour-ai/&amp;title=FNR+%26%238211%3B+BubbleBoy+Behaviour+AI" title=" "> </a> <a class="tt" href="http://www.facebook.com/share.php?u=http://robotgrrl.com/blog/2010/07/12/fnr-bubbleboy-behaviour-ai/&amp;t=FNR+%26%238211%3B+BubbleBoy+Behaviour+AI" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://robotgrrl.com/blog/2010/07/12/fnr-bubbleboy-behaviour-ai/&amp;t=FNR+%26%238211%3B+BubbleBoy+Behaviour+AI" title=" "> </a> <a class="tt" href="http://reddit.com/submit?url=http://robotgrrl.com/blog/2010/07/12/fnr-bubbleboy-behaviour-ai/&amp;title=FNR+%26%238211%3B+BubbleBoy+Behaviour+AI" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://robotgrrl.com/blog/2010/07/12/fnr-bubbleboy-behaviour-ai/&amp;title=FNR+%26%238211%3B+BubbleBoy+Behaviour+AI" title=" "> </a> <a class="tt" href="http://stumbleupon.com/submit?url=http://robotgrrl.com/blog/2010/07/12/fnr-bubbleboy-behaviour-ai/&amp;title=FNR+%26%238211%3B+BubbleBoy+Behaviour+AI" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://robotgrrl.com/blog/2010/07/12/fnr-bubbleboy-behaviour-ai/&amp;title=FNR+%26%238211%3B+BubbleBoy+Behaviour+AI" title=" "> </a></p>]]></content:encoded>
			<wfw:commentRss>http://robotgrrl.com/blog/2010/07/12/fnr-bubbleboy-behaviour-ai/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>BUBBLEHOG DAY &#8211; NO SHADOW!</title>
		<link>http://robotgrrl.com/blog/2009/02/02/bubblehog-day-no-shadow/</link>
		<comments>http://robotgrrl.com/blog/2009/02/02/bubblehog-day-no-shadow/#comments</comments>
		<pubDate>Mon, 02 Feb 2009 16:51:56 +0000</pubDate>
		<dc:creator>Erin, the RobotGrrl</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Other News]]></category>
		<category><![CDATA[BubbleBoy]]></category>
		<category><![CDATA[bubblehog]]></category>
		<category><![CDATA[groundhog day]]></category>
		<category><![CDATA[omgwtfbbqlmao]]></category>

		<guid isPermaLink="false">http://robotgrrl.com/blog/?p=1280</guid>
		<description><![CDATA[Yay!!!!]]></description>
			<content:encoded><![CDATA[<p><center><a href="http://www.flickr.com/photos/robotgrrl/3251045284/" title="BUBBLEHOG - NO SHADOW! by RobotGrrl, on Flickr"><img src="http://farm4.static.flickr.com/3019/3251045284_b9968dcd06.jpg" width="500" height="375" alt="BUBBLEHOG - NO SHADOW!" /></a></center></p>
<p>Yay!!!!</p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=BUBBLEHOG+DAY+%26%238211%3B+NO+SHADOW...+http://is.gd/eB6dK" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/home/?status=BUBBLEHOG+DAY+%26%238211%3B+NO+SHADOW...+http://is.gd/eB6dK" title=" "> </a> <a class="tt" href="http://delicious.com/post?url=http://robotgrrl.com/blog/2009/02/02/bubblehog-day-no-shadow/&amp;title=BUBBLEHOG+DAY+%26%238211%3B+NO+SHADOW..." title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://robotgrrl.com/blog/2009/02/02/bubblehog-day-no-shadow/&amp;title=BUBBLEHOG+DAY+%26%238211%3B+NO+SHADOW..." title=" "> </a> <a class="tt" href="http://digg.com/submit?url=http://robotgrrl.com/blog/2009/02/02/bubblehog-day-no-shadow/&amp;title=BUBBLEHOG+DAY+%26%238211%3B+NO+SHADOW..." title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://robotgrrl.com/blog/2009/02/02/bubblehog-day-no-shadow/&amp;title=BUBBLEHOG+DAY+%26%238211%3B+NO+SHADOW..." title=" "> </a> <a class="tt" href="http://www.facebook.com/share.php?u=http://robotgrrl.com/blog/2009/02/02/bubblehog-day-no-shadow/&amp;t=BUBBLEHOG+DAY+%26%238211%3B+NO+SHADOW..." title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://robotgrrl.com/blog/2009/02/02/bubblehog-day-no-shadow/&amp;t=BUBBLEHOG+DAY+%26%238211%3B+NO+SHADOW..." title=" "> </a> <a class="tt" href="http://reddit.com/submit?url=http://robotgrrl.com/blog/2009/02/02/bubblehog-day-no-shadow/&amp;title=BUBBLEHOG+DAY+%26%238211%3B+NO+SHADOW..." title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://robotgrrl.com/blog/2009/02/02/bubblehog-day-no-shadow/&amp;title=BUBBLEHOG+DAY+%26%238211%3B+NO+SHADOW..." title=" "> </a> <a class="tt" href="http://stumbleupon.com/submit?url=http://robotgrrl.com/blog/2009/02/02/bubblehog-day-no-shadow/&amp;title=BUBBLEHOG+DAY+%26%238211%3B+NO+SHADOW..." title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://robotgrrl.com/blog/2009/02/02/bubblehog-day-no-shadow/&amp;title=BUBBLEHOG+DAY+%26%238211%3B+NO+SHADOW..." title=" "> </a></p>]]></content:encoded>
			<wfw:commentRss>http://robotgrrl.com/blog/2009/02/02/bubblehog-day-no-shadow/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FNR BubbleBoy Lamp Video</title>
		<link>http://robotgrrl.com/blog/2009/01/26/fnr-bubbleboy-lamp-video/</link>
		<comments>http://robotgrrl.com/blog/2009/01/26/fnr-bubbleboy-lamp-video/#comments</comments>
		<pubDate>Mon, 26 Jan 2009 14:10:03 +0000</pubDate>
		<dc:creator>Erin, the RobotGrrl</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[Robot]]></category>
		<category><![CDATA[BubbleBoy]]></category>
		<category><![CDATA[FNR]]></category>
		<category><![CDATA[friday night robotics]]></category>
		<category><![CDATA[lamp]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://robotgrrl.com/blog/?p=1273</guid>
		<description><![CDATA[Here is the video of BubbleBoy reacting to the lamp turning on! BubbleBoy Lamp from RobotGrrl on Vimeo. It is also on youtube. The &#8220;squeaking&#8221; that you hear was one of the servos pulsating, most likely due to a short. I unplugged it later, and it stopped. ^_^]]></description>
			<content:encoded><![CDATA[<p>Here is the video of BubbleBoy reacting to the lamp turning on!</p>
<p><center><object width="400" height="225"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=2962359&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=00adef&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=2962359&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=00adef&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="225"></embed></object><br /><a href="http://vimeo.com/2962359">BubbleBoy Lamp</a> from <a href="http://vimeo.com/robotgrrl">RobotGrrl</a> on <a href="http://vimeo.com">Vimeo</a>.</center></p>
<p>It is also on <a href="http://www.youtube.com/watch?v=NTphtJVK4_E&#038;feature=channel_page">youtube</a>.</p>
<p>The &#8220;squeaking&#8221; that you hear was one of the servos pulsating, most likely due to a short. I unplugged it later, and it stopped. ^_^</p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=FNR+BubbleBoy+Lamp+Video+http://is.gd/eAaBm" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/home/?status=FNR+BubbleBoy+Lamp+Video+http://is.gd/eAaBm" title=" "> </a> <a class="tt" href="http://delicious.com/post?url=http://robotgrrl.com/blog/2009/01/26/fnr-bubbleboy-lamp-video/&amp;title=FNR+BubbleBoy+Lamp+Video" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://robotgrrl.com/blog/2009/01/26/fnr-bubbleboy-lamp-video/&amp;title=FNR+BubbleBoy+Lamp+Video" title=" "> </a> <a class="tt" href="http://digg.com/submit?url=http://robotgrrl.com/blog/2009/01/26/fnr-bubbleboy-lamp-video/&amp;title=FNR+BubbleBoy+Lamp+Video" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://robotgrrl.com/blog/2009/01/26/fnr-bubbleboy-lamp-video/&amp;title=FNR+BubbleBoy+Lamp+Video" title=" "> </a> <a class="tt" href="http://www.facebook.com/share.php?u=http://robotgrrl.com/blog/2009/01/26/fnr-bubbleboy-lamp-video/&amp;t=FNR+BubbleBoy+Lamp+Video" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://robotgrrl.com/blog/2009/01/26/fnr-bubbleboy-lamp-video/&amp;t=FNR+BubbleBoy+Lamp+Video" title=" "> </a> <a class="tt" href="http://reddit.com/submit?url=http://robotgrrl.com/blog/2009/01/26/fnr-bubbleboy-lamp-video/&amp;title=FNR+BubbleBoy+Lamp+Video" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://robotgrrl.com/blog/2009/01/26/fnr-bubbleboy-lamp-video/&amp;title=FNR+BubbleBoy+Lamp+Video" title=" "> </a> <a class="tt" href="http://stumbleupon.com/submit?url=http://robotgrrl.com/blog/2009/01/26/fnr-bubbleboy-lamp-video/&amp;title=FNR+BubbleBoy+Lamp+Video" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://robotgrrl.com/blog/2009/01/26/fnr-bubbleboy-lamp-video/&amp;title=FNR+BubbleBoy+Lamp+Video" title=" "> </a></p>]]></content:encoded>
			<wfw:commentRss>http://robotgrrl.com/blog/2009/01/26/fnr-bubbleboy-lamp-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Friday Night Robotics &#8211; Light</title>
		<link>http://robotgrrl.com/blog/2009/01/23/friday-night-robotics-light/</link>
		<comments>http://robotgrrl.com/blog/2009/01/23/friday-night-robotics-light/#comments</comments>
		<pubDate>Sat, 24 Jan 2009 04:58:20 +0000</pubDate>
		<dc:creator>Erin, the RobotGrrl</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[Robot]]></category>
		<category><![CDATA[School]]></category>
		<category><![CDATA[AI Library]]></category>
		<category><![CDATA[Arduino]]></category>
		<category><![CDATA[boring]]></category>
		<category><![CDATA[BubbleBoy]]></category>
		<category><![CDATA[COSI]]></category>
		<category><![CDATA[EPFL]]></category>
		<category><![CDATA[Femsapien]]></category>
		<category><![CDATA[FNR]]></category>
		<category><![CDATA[friday night robotics]]></category>
		<category><![CDATA[haut-parleur]]></category>
		<category><![CDATA[lamp]]></category>
		<category><![CDATA[LDR]]></category>
		<category><![CDATA[light]]></category>
		<category><![CDATA[photocell]]></category>
		<category><![CDATA[piezo]]></category>
		<category><![CDATA[Processing]]></category>
		<category><![CDATA[speaker]]></category>
		<category><![CDATA[wait time]]></category>

		<guid isPermaLink="false">http://robotgrrl.com/blog/?p=1267</guid>
		<description><![CDATA[For better or worse, I made a program for BubbleBoy that reacts to a light being turned on. The program evaluates the light the same way MANOI&#8217;s hockey stick did. Once it goes over a particular threshold, it will begin to spin its hat and start saying &#8220;HELLO!HELLO!HELLO!&#8221;. At first, I wanted to make BB [...]]]></description>
			<content:encoded><![CDATA[<p>For better or worse, I made a program for BubbleBoy that reacts to a light being turned on. </p>
<p><center><a href="http://www.flickr.com/photos/robotgrrl/3227892184/" title="BubbleBoy Lamp - FNR by RobotGrrl, on Flickr"><img src="http://farm4.static.flickr.com/3340/3227892184_f6a8de0b3d.jpg" width="500" height="375" alt="BubbleBoy Lamp - FNR" /></a></center></p>
<p>The program evaluates the light the same way MANOI&#8217;s hockey stick did. Once it goes over a particular threshold, it will begin to spin its hat and start saying &#8220;HELLO!HELLO!HELLO!&#8221;.</p>
<p><center><a href="http://www.flickr.com/photos/robotgrrl/3227892708/" title="BubbleBoy Lamp - FNR by RobotGrrl, on Flickr"><img src="http://farm4.static.flickr.com/3362/3227892708_d32a72880a.jpg" width="500" height="375" alt="BubbleBoy Lamp - FNR" /></a></center></p>
<p>At first, I wanted to make BB react to sound, so I dismantled a &#8220;haut-parleur&#8221; that I got a while ago, thinking that it was a piezo speaker. It&#8217;s actually not a piezo, because when I was looking at the analog readings on the Arduino, nothing happened if I fiddled with it. Weird!</p>
<p><center><br />
<a href="http://www.flickr.com/photos/robotgrrl/3227038145/" title="BubbleBoy Lamp - FNR by RobotGrrl, on Flickr"><img src="http://farm4.static.flickr.com/3384/3227038145_7c78a35d01.jpg" width="500" height="375" alt="BubbleBoy Lamp - FNR" /></a></p>
<p><a href="http://www.flickr.com/photos/robotgrrl/3227891556/" title="BubbleBoy Lamp - FNR by RobotGrrl, on Flickr"><img src="http://farm4.static.flickr.com/3308/3227891556_40bca05357.jpg" width="500" height="375" alt="BubbleBoy Lamp - FNR" /></a></center></p>
<p>When it says on the LCD that I&#8217;m at &#8220;cheel&#8221;, it is hardcoded in. I tried to use <a href="http://blog.tinyenormous.com/2008/12/02/arduino-based-rss-reader-with-lcd/comment-page-1/#comment-670">the script that downloads a feed</a>, but it doesn&#8217;t work for me, for some reason. I commented below that post with my setup and questions. =)</p>
<p><center><a href="http://www.flickr.com/photos/robotgrrl/3227038883/" title="BubbleBoy Lamp - FNR by RobotGrrl, on Flickr"><img src="http://farm4.static.flickr.com/3084/3227038883_0bafea92a4.jpg" width="500" height="375" alt="BubbleBoy Lamp - FNR" /></a></center></p>
<p>Aah I can&#8217;t wait until my Femsapien arrives from the EPFL! It is super boring without a humanoid to work on. <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>I&#8217;m not exactly sure what the moral of this FNR is supposed to be&#8230; annoy me and face &#8216;teh ultimate&#8217; BubbleBoy?! Hahahaha</p>
<p>I&#8217;ll add the video later in another post, Vimeo has a wait time of 130 minutes &#8211; and YouTube &#8230; well who knows about YouTube. o.O</p>
<p>I&#8217;m going to be working on an AI Library for Processing with a few people here at the COSI (hopefully). Expect many more posts about that! Woohuu! =)</p>
<p>That&#8217;s all for now. *turns lamp off*</p>
<p><center><a href="http://www.flickr.com/photos/robotgrrl/3227891792/" title="BubbleBoy Lamp - FNR by RobotGrrl, on Flickr"><img src="http://farm4.static.flickr.com/3376/3227891792_f9b07b8b11.jpg" width="500" height="375" alt="BubbleBoy Lamp - FNR" /></a></center></p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=Friday+Night+Robotics+%26%238211%3B+Light+http://is.gd/ezYLF" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/home/?status=Friday+Night+Robotics+%26%238211%3B+Light+http://is.gd/ezYLF" title=" "> </a> <a class="tt" href="http://delicious.com/post?url=http://robotgrrl.com/blog/2009/01/23/friday-night-robotics-light/&amp;title=Friday+Night+Robotics+%26%238211%3B+Light" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://robotgrrl.com/blog/2009/01/23/friday-night-robotics-light/&amp;title=Friday+Night+Robotics+%26%238211%3B+Light" title=" "> </a> <a class="tt" href="http://digg.com/submit?url=http://robotgrrl.com/blog/2009/01/23/friday-night-robotics-light/&amp;title=Friday+Night+Robotics+%26%238211%3B+Light" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://robotgrrl.com/blog/2009/01/23/friday-night-robotics-light/&amp;title=Friday+Night+Robotics+%26%238211%3B+Light" title=" "> </a> <a class="tt" href="http://www.facebook.com/share.php?u=http://robotgrrl.com/blog/2009/01/23/friday-night-robotics-light/&amp;t=Friday+Night+Robotics+%26%238211%3B+Light" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://robotgrrl.com/blog/2009/01/23/friday-night-robotics-light/&amp;t=Friday+Night+Robotics+%26%238211%3B+Light" title=" "> </a> <a class="tt" href="http://reddit.com/submit?url=http://robotgrrl.com/blog/2009/01/23/friday-night-robotics-light/&amp;title=Friday+Night+Robotics+%26%238211%3B+Light" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://robotgrrl.com/blog/2009/01/23/friday-night-robotics-light/&amp;title=Friday+Night+Robotics+%26%238211%3B+Light" title=" "> </a> <a class="tt" href="http://stumbleupon.com/submit?url=http://robotgrrl.com/blog/2009/01/23/friday-night-robotics-light/&amp;title=Friday+Night+Robotics+%26%238211%3B+Light" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://robotgrrl.com/blog/2009/01/23/friday-night-robotics-light/&amp;title=Friday+Night+Robotics+%26%238211%3B+Light" title=" "> </a></p>]]></content:encoded>
			<wfw:commentRss>http://robotgrrl.com/blog/2009/01/23/friday-night-robotics-light/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Friday Night Robotics &#8211; Plain Vanilla</title>
		<link>http://robotgrrl.com/blog/2009/01/18/friday-night-robotics-plain-vanilla/</link>
		<comments>http://robotgrrl.com/blog/2009/01/18/friday-night-robotics-plain-vanilla/#comments</comments>
		<pubDate>Mon, 19 Jan 2009 03:47:45 +0000</pubDate>
		<dc:creator>Erin, the RobotGrrl</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[Robot]]></category>
		<category><![CDATA[Arduino]]></category>
		<category><![CDATA[boring]]></category>
		<category><![CDATA[BubbleBoy]]></category>
		<category><![CDATA[dc motors]]></category>
		<category><![CDATA[DDR]]></category>
		<category><![CDATA[gearbox]]></category>
		<category><![CDATA[LCD]]></category>
		<category><![CDATA[LEDs]]></category>
		<category><![CDATA[nunchuck]]></category>
		<category><![CDATA[plain vanilla]]></category>
		<category><![CDATA[pong]]></category>
		<category><![CDATA[snowplow]]></category>
		<category><![CDATA[top heavy]]></category>
		<category><![CDATA[wiichuck]]></category>

		<guid isPermaLink="false">http://robotgrrl.com/blog/?p=1264</guid>
		<description><![CDATA[At first, the title of this post was &#8220;Mediocre at Best&#8221;, but after I typed it all up, I realized that I did do stuff that makes it a little bit better than mediocre! So, I switched it to &#8220;Plain Vanilla&#8221;. There really isn&#8217;t much stuff to do when I don&#8217;t have MANOI around! I [...]]]></description>
			<content:encoded><![CDATA[<p>At first, the title of this post was &#8220;Mediocre at Best&#8221;, but after I typed it all up, I realized that I did do stuff that makes it a little bit better than mediocre! So, I switched it to &#8220;Plain Vanilla&#8221;. There really isn&#8217;t much stuff to do when I don&#8217;t have MANOI around!</p>
<p>I started a new project thingy where it is an extremely simple game of pong. The paddles are stationary, but the trick is that one paddle would be controlled by the computer (in this case- an Arduino), and the other would be controlled by the human with a Wii Nunchuck.</p>
<p><center><a href="http://www.flickr.com/photos/robotgrrl/3208721632/" title="IMG_5122 by RobotGrrl, on Flickr"><img src="http://farm4.static.flickr.com/3407/3208721632_2a37ba857d.jpg" width="500" height="375" alt="IMG_5122" /></a></center></p>
<p>The paddles are represented by tiny pink LEDs, and the ball is represented by the LEDs in between them.</p>
<p>There is one LED at the top that is used to signal the start of a new game, and/or a goal.</p>
<p><center><a href="http://www.flickr.com/photos/robotgrrl/3207880967/" title="LEDs from top by RobotGrrl, on Flickr"><img src="http://farm4.static.flickr.com/3495/3207880967_b265065c7a.jpg" width="500" height="375" alt="LEDs from top" /></a></center></p>
<p>Since the human player would be using a nunchuck, it would sort of be like Dance-Dance-Revolution where you would have to tilt it a particular way to have the paddle show up. For this, I&#8217;m going to use BubbleBoy&#8217;s LCD screen:</p>
<p><center><a href="http://www.flickr.com/photos/robotgrrl/3208723740/" title="IMG_5123 by RobotGrrl, on Flickr"><img src="http://farm4.static.flickr.com/3352/3208723740_367aa00927.jpg" width="500" height="375" alt="IMG_5123" /></a></center></p>
<p>It will also be able to display the score! ^_^</p>
<p>I got a little bored of doing this due to numerous conflicting errors when I compiled the code, so I switched to my snowplow robot.</p>
<p>I remember having trouble trying to get the two motors to move with this one, so my main goal was to debug it. It turns out that one of the tab thingys on the DC motor was loose!</p>
<p>I had to snap the robot in half in order to transport it, so now the snowplow is waaay too top heavy =) It&#8217;s kind of funny!</p>
<p><center><a href="http://www.flickr.com/photos/robotgrrl/3207883859/" title="Snowplow Bot by RobotGrrl, on Flickr"><img src="http://farm4.static.flickr.com/3385/3207883859_c31fa4cf7f.jpg" width="500" height="375" alt="Snowplow Bot" /></a></center></p>
<p>I really can&#8217;t wait to get my Femsapien that I won from the <a href="http://www.robotspodcast.com/forum/viewtopic.php?f=4&#038;t=232&#038;start=0">Robots Podcast contest</a>. I&#8217;ll play around with it a bit, then I will hack it and put an Arduino in it! One of the things I really want to do is to try making it Twitter. Since I don&#8217;t have an ethernet shield, I would probably have the robot (Arduino) send a variable to Processing, which would then twitter, probably using something like <a href="http://yusuke.homeip.net/twitter4j/en/index.html">this</a>. </p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=Friday+Night+Robotics+%26%238211%3B+Plain+Vanilla+http://is.gd/eAARI" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/home/?status=Friday+Night+Robotics+%26%238211%3B+Plain+Vanilla+http://is.gd/eAARI" title=" "> </a> <a class="tt" href="http://delicious.com/post?url=http://robotgrrl.com/blog/2009/01/18/friday-night-robotics-plain-vanilla/&amp;title=Friday+Night+Robotics+%26%238211%3B+Plain+Vanilla" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://robotgrrl.com/blog/2009/01/18/friday-night-robotics-plain-vanilla/&amp;title=Friday+Night+Robotics+%26%238211%3B+Plain+Vanilla" title=" "> </a> <a class="tt" href="http://digg.com/submit?url=http://robotgrrl.com/blog/2009/01/18/friday-night-robotics-plain-vanilla/&amp;title=Friday+Night+Robotics+%26%238211%3B+Plain+Vanilla" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://robotgrrl.com/blog/2009/01/18/friday-night-robotics-plain-vanilla/&amp;title=Friday+Night+Robotics+%26%238211%3B+Plain+Vanilla" title=" "> </a> <a class="tt" href="http://www.facebook.com/share.php?u=http://robotgrrl.com/blog/2009/01/18/friday-night-robotics-plain-vanilla/&amp;t=Friday+Night+Robotics+%26%238211%3B+Plain+Vanilla" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://robotgrrl.com/blog/2009/01/18/friday-night-robotics-plain-vanilla/&amp;t=Friday+Night+Robotics+%26%238211%3B+Plain+Vanilla" title=" "> </a> <a class="tt" href="http://reddit.com/submit?url=http://robotgrrl.com/blog/2009/01/18/friday-night-robotics-plain-vanilla/&amp;title=Friday+Night+Robotics+%26%238211%3B+Plain+Vanilla" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://robotgrrl.com/blog/2009/01/18/friday-night-robotics-plain-vanilla/&amp;title=Friday+Night+Robotics+%26%238211%3B+Plain+Vanilla" title=" "> </a> <a class="tt" href="http://stumbleupon.com/submit?url=http://robotgrrl.com/blog/2009/01/18/friday-night-robotics-plain-vanilla/&amp;title=Friday+Night+Robotics+%26%238211%3B+Plain+Vanilla" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://robotgrrl.com/blog/2009/01/18/friday-night-robotics-plain-vanilla/&amp;title=Friday+Night+Robotics+%26%238211%3B+Plain+Vanilla" title=" "> </a></p>]]></content:encoded>
			<wfw:commentRss>http://robotgrrl.com/blog/2009/01/18/friday-night-robotics-plain-vanilla/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BubbleBoy is not Characterful</title>
		<link>http://robotgrrl.com/blog/2008/09/12/bubbleboy-is-not-characterful/</link>
		<comments>http://robotgrrl.com/blog/2008/09/12/bubbleboy-is-not-characterful/#comments</comments>
		<pubDate>Sat, 13 Sep 2008 03:37:22 +0000</pubDate>
		<dc:creator>Erin, the RobotGrrl</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Robot News]]></category>
		<category><![CDATA[angry]]></category>
		<category><![CDATA[BubbleBoy]]></category>
		<category><![CDATA[FUDGE!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!]]></category>
		<category><![CDATA[grrrr]]></category>
		<category><![CDATA[sad]]></category>

		<guid isPermaLink="false">http://robotgrrl.com/blog/2008/09/12/bubbleboy-is-not-characterful/</guid>
		<description><![CDATA[FUDGE! BubbleBoy did not win, nor PLACE in crabfu&#8217;s &#8216;Most Characterful&#8217; competition. I don&#8217;t understand how it didn&#8217;t&#8230; My source and schematics are even open!! This extremely sucks as I wanted to win so badly as I don&#8217;t have the money to buy a serial servo controller Fudge!! Will MANOI forever be in a box? [...]]]></description>
			<content:encoded><![CDATA[<p>FUDGE! <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>BubbleBoy did not win, nor PLACE in crabfu&#8217;s &#8216;Most Characterful&#8217; competition. <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>I don&#8217;t understand how it didn&#8217;t&#8230; <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />   <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />   <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /><br />
My source and schematics are even open!! <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>This extremely sucks as I wanted to win so badly as I don&#8217;t have the money to buy a serial servo controller <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  Fudge!! <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /><br />
Will MANOI forever be in a box? Talk about unethical treatment to a robot&#8230; <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /><br />
(You wouldn&#8217;t keep a cat in a box* for a month would you?! why would a robot be any different?!)<br />
<em><h7>* Schrodinger&#8217;s cat is an exception</h7></em></p>
<p>I guess I poured too much creativity and florescent pink and lime green paint into it >:( Grr! Either that, or it doesn&#8217;t even count as a robot since it doesn&#8217;t show its wires.<br />
 <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />   <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />   <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /><br />
 <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  Although it is only &#8220;one contest&#8221; it was only an EXTREMELY GIGANTICOR SUPER DUPER CONTEST that I really wanted to win so I can work on my other robot so I can win other contests so I can pay for parts to keep researching robotics!!!! <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />   <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />   <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>sigh&#8230;</p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=BubbleBoy+is+not+Characterful+http://is.gd/eA3Kz" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/home/?status=BubbleBoy+is+not+Characterful+http://is.gd/eA3Kz" title=" "> </a> <a class="tt" href="http://delicious.com/post?url=http://robotgrrl.com/blog/2008/09/12/bubbleboy-is-not-characterful/&amp;title=BubbleBoy+is+not+Characterful" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://robotgrrl.com/blog/2008/09/12/bubbleboy-is-not-characterful/&amp;title=BubbleBoy+is+not+Characterful" title=" "> </a> <a class="tt" href="http://digg.com/submit?url=http://robotgrrl.com/blog/2008/09/12/bubbleboy-is-not-characterful/&amp;title=BubbleBoy+is+not+Characterful" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://robotgrrl.com/blog/2008/09/12/bubbleboy-is-not-characterful/&amp;title=BubbleBoy+is+not+Characterful" title=" "> </a> <a class="tt" href="http://www.facebook.com/share.php?u=http://robotgrrl.com/blog/2008/09/12/bubbleboy-is-not-characterful/&amp;t=BubbleBoy+is+not+Characterful" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://robotgrrl.com/blog/2008/09/12/bubbleboy-is-not-characterful/&amp;t=BubbleBoy+is+not+Characterful" title=" "> </a> <a class="tt" href="http://reddit.com/submit?url=http://robotgrrl.com/blog/2008/09/12/bubbleboy-is-not-characterful/&amp;title=BubbleBoy+is+not+Characterful" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://robotgrrl.com/blog/2008/09/12/bubbleboy-is-not-characterful/&amp;title=BubbleBoy+is+not+Characterful" title=" "> </a> <a class="tt" href="http://stumbleupon.com/submit?url=http://robotgrrl.com/blog/2008/09/12/bubbleboy-is-not-characterful/&amp;title=BubbleBoy+is+not+Characterful" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://robotgrrl.com/blog/2008/09/12/bubbleboy-is-not-characterful/&amp;title=BubbleBoy+is+not+Characterful" title=" "> </a></p>]]></content:encoded>
			<wfw:commentRss>http://robotgrrl.com/blog/2008/09/12/bubbleboy-is-not-characterful/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>More BubbleBoy</title>
		<link>http://robotgrrl.com/blog/2008/09/08/more-bubbleboy/</link>
		<comments>http://robotgrrl.com/blog/2008/09/08/more-bubbleboy/#comments</comments>
		<pubDate>Mon, 08 Sep 2008 15:30:41 +0000</pubDate>
		<dc:creator>Erin, the RobotGrrl</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[Robot]]></category>
		<category><![CDATA[BubbleBoy]]></category>
		<category><![CDATA[competition]]></category>
		<category><![CDATA[crabfu]]></category>

		<guid isPermaLink="false">http://robotgrrl.com/blog/2008/09/08/more-bubbleboy/</guid>
		<description><![CDATA[Even more BubbleBoy awesomeness And here&#8217;s the circuit diagram! I hope I entered crabfu&#8217;s most characterful robot contest correctly. The deadline said: 09/08/08 at midnight &#8212; but it almost sounds as if it&#8217;s already closed and so now I&#8217;m so worried that I didn&#8217;t even enter and I won&#8217;t even be considered so therefore I [...]]]></description>
			<content:encoded><![CDATA[<p>Even more BubbleBoy awesomeness <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><center><object width="425" height="349"><param name="movie" value="http://www.youtube.com/v/Eixy721ZwDA&#038;hl=en&#038;fs=1&#038;color1=0xe1600f&#038;color2=0xfebd01&#038;border=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/Eixy721ZwDA&#038;hl=en&#038;fs=1&#038;color1=0xe1600f&#038;color2=0xfebd01&#038;border=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="349"></embed></object></center></p>
<p>And here&#8217;s the circuit diagram!</p>
<p><center><a href="http://robotgrrl.com/blog/wp-content/uploads/2008/09/bubbleboycircuit.png" rel="lightbox[pics-1220887477]" title="bubbleboycircuit.png"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/09/bubbleboycircuit.png" width="578" height="726" alt="bubbleboycircuit.png" class="imageframe" /></a></center></p>
<p>I hope I entered crabfu&#8217;s most characterful robot contest correctly. The deadline said: 09/08/08 at midnight &#8212; but it almost sounds as if it&#8217;s already closed and so now I&#8217;m so worried that I didn&#8217;t even enter and I won&#8217;t even be considered so therefore I wouldn&#8217;t stand a chance :&#8217;( I HATE TIMEZONES!!! <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  Let&#8217;s just all hope that it is entered in the contest&#8230;<br />
<strong>Update:</strong> Everything is okay. I&#8217;m entered in the contest! <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=More+BubbleBoy+http://is.gd/eGXoi" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/home/?status=More+BubbleBoy+http://is.gd/eGXoi" title=" "> </a> <a class="tt" href="http://delicious.com/post?url=http://robotgrrl.com/blog/2008/09/08/more-bubbleboy/&amp;title=More+BubbleBoy" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://robotgrrl.com/blog/2008/09/08/more-bubbleboy/&amp;title=More+BubbleBoy" title=" "> </a> <a class="tt" href="http://digg.com/submit?url=http://robotgrrl.com/blog/2008/09/08/more-bubbleboy/&amp;title=More+BubbleBoy" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://robotgrrl.com/blog/2008/09/08/more-bubbleboy/&amp;title=More+BubbleBoy" title=" "> </a> <a class="tt" href="http://www.facebook.com/share.php?u=http://robotgrrl.com/blog/2008/09/08/more-bubbleboy/&amp;t=More+BubbleBoy" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://robotgrrl.com/blog/2008/09/08/more-bubbleboy/&amp;t=More+BubbleBoy" title=" "> </a> <a class="tt" href="http://reddit.com/submit?url=http://robotgrrl.com/blog/2008/09/08/more-bubbleboy/&amp;title=More+BubbleBoy" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://robotgrrl.com/blog/2008/09/08/more-bubbleboy/&amp;title=More+BubbleBoy" title=" "> </a> <a class="tt" href="http://stumbleupon.com/submit?url=http://robotgrrl.com/blog/2008/09/08/more-bubbleboy/&amp;title=More+BubbleBoy" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://robotgrrl.com/blog/2008/09/08/more-bubbleboy/&amp;title=More+BubbleBoy" title=" "> </a></p>]]></content:encoded>
			<wfw:commentRss>http://robotgrrl.com/blog/2008/09/08/more-bubbleboy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BubbleBoy Finished</title>
		<link>http://robotgrrl.com/blog/2008/09/04/bubbleboy-finished/</link>
		<comments>http://robotgrrl.com/blog/2008/09/04/bubbleboy-finished/#comments</comments>
		<pubDate>Fri, 05 Sep 2008 05:02:59 +0000</pubDate>
		<dc:creator>Erin, the RobotGrrl</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[Robot]]></category>
		<category><![CDATA[BubbleBoy]]></category>
		<category><![CDATA[finished]]></category>

		<guid isPermaLink="false">http://robotgrrl.com/blog/2008/09/04/bubbleboy-finished/</guid>
		<description><![CDATA[Yay! BubbleBoy is finished (version 1). Briefly, BubbleBoy was created to demonstrate emotions and their applications in robotics. BubbleBoy has a food and water level, and when averaged out, a health level. The mood is determined by the health level. There are 10 moods, each of which BubbleBoy has a little &#8216;action set&#8217; with. This [...]]]></description>
			<content:encoded><![CDATA[<p>Yay! BubbleBoy is <strong>finished</strong> (version 1). Briefly, BubbleBoy was created to demonstrate emotions and their applications in robotics. BubbleBoy has a food and water level, and when averaged out, a health level. The mood is determined by the health level. There are 10 moods, each of which BubbleBoy has a little &#8216;action set&#8217; with. This is to try to get more food! After the &#8216;action set&#8217; is over, you can feed it or give it water. When the food/water button is pressed, it increases the food/water level by a random int in between a lower bound and upper bound. Also, when BubbleBoy finishes three &#8216;action sets&#8217;, it becomes more hungry and thirsty &#8211; thereby decreasing the food/water levels. So, BubbleBoy is similar to a &#8216;tamigotchi&#8217;. It was fun to make- BB has 2 servos, 2 DC motors, 2 buttons, 4 LEDs, 1 LDR, and 1 LCD. All of these are controlled by the Arduino board. <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><center><object width="425" height="349"><param name="movie" value="http://www.youtube.com/v/7Mp35TkzMUA&#038;hl=en&#038;fs=1&#038;color1=0x006699&#038;color2=0x54abd6&#038;border=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/7Mp35TkzMUA&#038;hl=en&#038;fs=1&#038;color1=0x006699&#038;color2=0x54abd6&#038;border=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="349"></embed></object></center></p>
<p>The source code is <a href="http://robotgrrl.com/bubbleboy/bubbleBoy_v1.zip">here</a>! There are no comments in the code yet (they&#8217;re all in my brain at the moment, haha).</p>
<p>Although I said (on Wednesday) that this was going to be posted tomorrow&#8230; it&#8217;s actually early Friday. BUT, since I haven&#8217;t slept yet, it&#8217;s still Thursday to me :] I had so much trouble getting the footage from the tape recorder onto the mac! It seemed to be like technical difficulty after technical difficulty the entire time.  I&#8217;ll post more details tomorrow about the schematics&#8230; to be honest I forgot if I used pull up resistors or not! So I have to check&#8230;</p>
<p>All the awesome pictures! The plastic was painted green, and the push buttons were created <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><center><a href="http://robotgrrl.com/blog/wp-content/uploads/2008/09/img_3069.JPG" rel="lightbox[pics-1220588653]" title="BubbleBoy in the spotlight"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/09/img_3069.thumbnail.JPG" width="97" height="130" alt="BubbleBoy in the spotlight" class="imageframe" /></a> <a href="http://robotgrrl.com/blog/wp-content/uploads/2008/09/img_3070.JPG" rel="lightbox[pics-1220588653]" title="Filming BubbleBoy haha"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/09/img_3070.thumbnail.JPG" width="130" height="97" alt="Filming BubbleBoy haha" class="imageframe" /></a> <a href="http://robotgrrl.com/blog/wp-content/uploads/2008/09/img_3066.JPG" rel="lightbox[pics-1220588653]" title="LED Labels"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/09/img_3066.thumbnail.JPG" width="97" height="130" alt="LED Labels" class="imageframe" /></a> <a href="http://robotgrrl.com/blog/wp-content/uploads/2008/09/img_3060.JPG" rel="lightbox[pics-1220588653]" title="Water Button"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/09/img_3060.thumbnail.JPG" width="97" height="130" alt="Water Button" class="imageframe" /></a> <a href="http://robotgrrl.com/blog/wp-content/uploads/2008/09/img_3061.JPG" rel="lightbox[pics-1220588653]" title="Food Button"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/09/img_3061.thumbnail.JPG" width="97" height="130" alt="Food Button" class="imageframe" /></a> <a href="http://robotgrrl.com/blog/wp-content/uploads/2008/09/img_3064.JPG" rel="lightbox[pics-1220588653]" title="HulaRing!"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/09/img_3064.thumbnail.JPG" width="97" height="130" alt="HulaRing!" class="imageframe" /></a> <a href="http://robotgrrl.com/blog/wp-content/uploads/2008/09/img_3058.JPG" rel="lightbox[pics-1220588653]" title="Closeup!"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/09/img_3058.thumbnail.JPG" width="97" height="130" alt="Closeup!" class="imageframe" /></a> <a href="http://robotgrrl.com/blog/wp-content/uploads/2008/09/img_3048.JPG" rel="lightbox[pics-1220588653]" title="BubbleBoy’s Eyez"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/09/img_3048.thumbnail.JPG" width="130" height="97" alt="BubbleBoy’s Eyez" class="imageframe" /></a> <a href="http://robotgrrl.com/blog/wp-content/uploads/2008/09/img_3054.JPG" rel="lightbox[pics-1220588653]" title="BubbleBoy LCD"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/09/img_3054.thumbnail.JPG" width="130" height="97" alt="BubbleBoy LCD" class="imageframe" /></a> <a href="http://robotgrrl.com/blog/wp-content/uploads/2008/09/img_3057.JPG" rel="lightbox[pics-1220588653]" title="BubbleBoy"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/09/img_3057.thumbnail.JPG" width="130" height="97" alt="BubbleBoy" class="imageframe" /></a> </center></p>
<p>There&#8217;s BubbleBoy! <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>The future versions will employ &#8216;expectations&#8217;. For instance, when BB is fed, it will record the LDR value. If after three action sets and the LDR value is the same&#8230; it will expect to be fed! If it&#8217;s not fed, then it will become more hungry or thirsty since it was somewhat &#8216;disappointed&#8217; because it wasn&#8217;t fed. <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Schematics and fancy vocabularized blurb tomorrow <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=BubbleBoy+Finished+http://is.gd/eDSSS" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/home/?status=BubbleBoy+Finished+http://is.gd/eDSSS" title=" "> </a> <a class="tt" href="http://delicious.com/post?url=http://robotgrrl.com/blog/2008/09/04/bubbleboy-finished/&amp;title=BubbleBoy+Finished" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://robotgrrl.com/blog/2008/09/04/bubbleboy-finished/&amp;title=BubbleBoy+Finished" title=" "> </a> <a class="tt" href="http://digg.com/submit?url=http://robotgrrl.com/blog/2008/09/04/bubbleboy-finished/&amp;title=BubbleBoy+Finished" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://robotgrrl.com/blog/2008/09/04/bubbleboy-finished/&amp;title=BubbleBoy+Finished" title=" "> </a> <a class="tt" href="http://www.facebook.com/share.php?u=http://robotgrrl.com/blog/2008/09/04/bubbleboy-finished/&amp;t=BubbleBoy+Finished" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://robotgrrl.com/blog/2008/09/04/bubbleboy-finished/&amp;t=BubbleBoy+Finished" title=" "> </a> <a class="tt" href="http://reddit.com/submit?url=http://robotgrrl.com/blog/2008/09/04/bubbleboy-finished/&amp;title=BubbleBoy+Finished" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://robotgrrl.com/blog/2008/09/04/bubbleboy-finished/&amp;title=BubbleBoy+Finished" title=" "> </a> <a class="tt" href="http://stumbleupon.com/submit?url=http://robotgrrl.com/blog/2008/09/04/bubbleboy-finished/&amp;title=BubbleBoy+Finished" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://robotgrrl.com/blog/2008/09/04/bubbleboy-finished/&amp;title=BubbleBoy+Finished" title=" "> </a></p>]]></content:encoded>
			<wfw:commentRss>http://robotgrrl.com/blog/2008/09/04/bubbleboy-finished/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>BUBBLEBOY TOMORROW!</title>
		<link>http://robotgrrl.com/blog/2008/09/03/bubbleboy-tomorrow/</link>
		<comments>http://robotgrrl.com/blog/2008/09/03/bubbleboy-tomorrow/#comments</comments>
		<pubDate>Thu, 04 Sep 2008 02:30:12 +0000</pubDate>
		<dc:creator>Erin, the RobotGrrl</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[Robot]]></category>
		<category><![CDATA[BubbleBoy]]></category>
		<category><![CDATA[shortest blog ever]]></category>

		<guid isPermaLink="false">http://robotgrrl.com/blog/2008/09/03/bubbleboy-tomorrow/</guid>
		<description><![CDATA[Tomorrow I&#8217;ll be finishing off BubbleBoy, posting the schematics, the code, pictures, and videos! ^_^ Woohoo! I might even write a fancy shmancy few paragraphs about how scientific it is.]]></description>
			<content:encoded><![CDATA[<p>Tomorrow I&#8217;ll be finishing off BubbleBoy, posting the schematics, the code, pictures, and videos! ^_^<br />
Woohoo!</p>
<p>I might even write a fancy shmancy few paragraphs about how scientific it is. <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=BUBBLEBOY+TOMORROW...+http://is.gd/eC2Ut" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/home/?status=BUBBLEBOY+TOMORROW...+http://is.gd/eC2Ut" title=" "> </a> <a class="tt" href="http://delicious.com/post?url=http://robotgrrl.com/blog/2008/09/03/bubbleboy-tomorrow/&amp;title=BUBBLEBOY+TOMORROW..." title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://robotgrrl.com/blog/2008/09/03/bubbleboy-tomorrow/&amp;title=BUBBLEBOY+TOMORROW..." title=" "> </a> <a class="tt" href="http://digg.com/submit?url=http://robotgrrl.com/blog/2008/09/03/bubbleboy-tomorrow/&amp;title=BUBBLEBOY+TOMORROW..." title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://robotgrrl.com/blog/2008/09/03/bubbleboy-tomorrow/&amp;title=BUBBLEBOY+TOMORROW..." title=" "> </a> <a class="tt" href="http://www.facebook.com/share.php?u=http://robotgrrl.com/blog/2008/09/03/bubbleboy-tomorrow/&amp;t=BUBBLEBOY+TOMORROW..." title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://robotgrrl.com/blog/2008/09/03/bubbleboy-tomorrow/&amp;t=BUBBLEBOY+TOMORROW..." title=" "> </a> <a class="tt" href="http://reddit.com/submit?url=http://robotgrrl.com/blog/2008/09/03/bubbleboy-tomorrow/&amp;title=BUBBLEBOY+TOMORROW..." title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://robotgrrl.com/blog/2008/09/03/bubbleboy-tomorrow/&amp;title=BUBBLEBOY+TOMORROW..." title=" "> </a> <a class="tt" href="http://stumbleupon.com/submit?url=http://robotgrrl.com/blog/2008/09/03/bubbleboy-tomorrow/&amp;title=BUBBLEBOY+TOMORROW..." title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://robotgrrl.com/blog/2008/09/03/bubbleboy-tomorrow/&amp;title=BUBBLEBOY+TOMORROW..." title=" "> </a></p>]]></content:encoded>
			<wfw:commentRss>http://robotgrrl.com/blog/2008/09/03/bubbleboy-tomorrow/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dormant Blogging</title>
		<link>http://robotgrrl.com/blog/2008/08/29/dormant-blogging/</link>
		<comments>http://robotgrrl.com/blog/2008/08/29/dormant-blogging/#comments</comments>
		<pubDate>Fri, 29 Aug 2008 17:20:01 +0000</pubDate>
		<dc:creator>Erin, the RobotGrrl</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[Robot]]></category>
		<category><![CDATA[BubbleBoy]]></category>
		<category><![CDATA[busy]]></category>
		<category><![CDATA[dormant]]></category>

		<guid isPermaLink="false">http://robotgrrl.com/blog/2008/08/29/dormant-blogging/</guid>
		<description><![CDATA[Dormant blogging kills the robot star xD BubbleBoy is doing good- and looks EXACTLY like a pink snowman with the scarf, which is what I was aiming for. The coding is going good&#8230; it&#8217;s all really simple Check out this video of cycling the health levels. For health >= 90 there is an action, but [...]]]></description>
			<content:encoded><![CDATA[<p><em>Dormant blogging kills the robot star</em> xD</p>
<p>BubbleBoy is doing good- and looks EXACTLY like a pink snowman with the scarf, which is what I was aiming for. <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>The coding is going good&#8230; it&#8217;s all really simple <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  Check out this video of cycling the health levels. For health >= 90 there is an action, but the others there isn&#8217;t yet because I haven&#8217;t programmed it yet teeheehee.</p>
<p><center><object width="425" height="349"><param name="movie" value="http://www.youtube.com/v/xWo2ClAm7EU&#038;hl=en&#038;fs=1&#038;color1=0x234900&#038;color2=0x4e9e00&#038;border=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/xWo2ClAm7EU&#038;hl=en&#038;fs=1&#038;color1=0x234900&#038;color2=0x4e9e00&#038;border=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="349"></embed></object></center></p>
<p>The video is really slow&#8230; as the delay between cycles was 10 seconds xD At the end you&#8217;ll see BubbleBoy&#8217;s &#8216;behaviour&#8217; for health >= 90. <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=Dormant+Blogging+http://is.gd/eAqKB" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/home/?status=Dormant+Blogging+http://is.gd/eAqKB" title=" "> </a> <a class="tt" href="http://delicious.com/post?url=http://robotgrrl.com/blog/2008/08/29/dormant-blogging/&amp;title=Dormant+Blogging" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://robotgrrl.com/blog/2008/08/29/dormant-blogging/&amp;title=Dormant+Blogging" title=" "> </a> <a class="tt" href="http://digg.com/submit?url=http://robotgrrl.com/blog/2008/08/29/dormant-blogging/&amp;title=Dormant+Blogging" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://robotgrrl.com/blog/2008/08/29/dormant-blogging/&amp;title=Dormant+Blogging" title=" "> </a> <a class="tt" href="http://www.facebook.com/share.php?u=http://robotgrrl.com/blog/2008/08/29/dormant-blogging/&amp;t=Dormant+Blogging" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://robotgrrl.com/blog/2008/08/29/dormant-blogging/&amp;t=Dormant+Blogging" title=" "> </a> <a class="tt" href="http://reddit.com/submit?url=http://robotgrrl.com/blog/2008/08/29/dormant-blogging/&amp;title=Dormant+Blogging" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://robotgrrl.com/blog/2008/08/29/dormant-blogging/&amp;title=Dormant+Blogging" title=" "> </a> <a class="tt" href="http://stumbleupon.com/submit?url=http://robotgrrl.com/blog/2008/08/29/dormant-blogging/&amp;title=Dormant+Blogging" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://robotgrrl.com/blog/2008/08/29/dormant-blogging/&amp;title=Dormant+Blogging" title=" "> </a></p>]]></content:encoded>
			<wfw:commentRss>http://robotgrrl.com/blog/2008/08/29/dormant-blogging/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
