<?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>Aeturnalus</title>
	<atom:link href="http://aeturnalus.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://aeturnalus.com</link>
	<description>Vita, Semper Eternus</description>
	<lastBuildDate>Fri, 02 Dec 2011 01:17:53 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Moved to GitHub</title>
		<link>http://aeturnalus.com/robotics/moved-github/</link>
		<comments>http://aeturnalus.com/robotics/moved-github/#comments</comments>
		<pubDate>Fri, 02 Dec 2011 01:17:53 +0000</pubDate>
		<dc:creator>Robert Ying</dc:creator>
				<category><![CDATA[Robotics]]></category>

		<guid isPermaLink="false">http://aeturnalus.com/?p=1319</guid>
		<description><![CDATA[Due to various reasons, not the least of which was a desire to make my code easier to access for those who want to see it, I&#8217;ve decided to move my ROS repository from my own server to GitHub. It &#8230; <a href="http://aeturnalus.com/robotics/moved-github/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Due to various reasons, not the least of which was a desire to make my code easier to access for those who want to see it, I&#8217;ve decided to move my ROS repository from my own server to GitHub. </p>
<p>It can be viewed here: <a href="https://github.com/rbtying/Companion-Cube">https://github.com/rbtying/Companion-Cube</a></p>
<!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://aeturnalus.com/robotics/moved-github/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple Arduino Robot Control</title>
		<link>http://aeturnalus.com/software/simple-arduino-robot-control/</link>
		<comments>http://aeturnalus.com/software/simple-arduino-robot-control/#comments</comments>
		<pubDate>Thu, 01 Dec 2011 03:32:37 +0000</pubDate>
		<dc:creator>Robert Ying</dc:creator>
				<category><![CDATA[Robotics]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://aeturnalus.com/?p=1313</guid>
		<description><![CDATA[One of the simplest bits of functionality that is useful for small-scale robotics is the ability to control robots over the serial port, which can easily be made wireless using Pololu Wixels, XBee, bluetooth, or any other wireless serial connection. &#8230; <a href="http://aeturnalus.com/software/simple-arduino-robot-control/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>One of the simplest bits of functionality that is useful for small-scale robotics is the ability to control robots over the serial port, which can easily be made wireless using Pololu Wixels, XBee, bluetooth, or any other wireless serial connection. Since the Arduino Serial Monitor only sends out messages rather slowly, and it&#8217;s usually nice to have a fast response from computer to robot, I wrote a short Java application that handles the communication for you.</p>
<p>Download here:</p>
<blockquote><p><a href='http://aeturnalus.com/wp/wp-content/uploads/2011/11/robotcontrol.tar.gz'>Robot Controller</a><br />
Source code is released into the public domain, but if you use it, I&#8217;d appreciate it if you cite me somewhere (Robert Ying).</p></blockquote>
<p>You&#8217;ll also need to have the appropriate rxtx native library in the same folder as the jar file when running it&mdash;you can download that <a href="http://rxtx.qbang.org/wiki/index.php/Download">here</a></p>
<p>Corresponding Arduino Code:</p>
<pre lang="c++">
void setup() {
  Serial.begin(115200);
}

// method that sets motor speeds from -255 to 255
// corresponding to full reverse and full forward
void setLeftMotor(int speed);
void setRightMotor(int speed);

byte nextByte() {
  unsigned long start = millis();
  while (millis() - start < 100) {
    if (Serial.available()) {
      return Serial.read();
    }
  }
  return 0x00;
]

void loop() {
  while (Serial.available()) {
    switch(Serial.read()) {
      case 0xC1: setLeftMotor(2 * nextByte()); break;
      case 0xC2: setLeftMotor(-2 * nextByte()); break;
      case 0xC5: setRightMotor(2 * nextByte()); break;
      case 0xC6: setRightMotor(-2 * nextByte()); break;
      default: setLeftMotor(0); setRightMotor(0); break;
    }
  }
}
</pre>
<!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://aeturnalus.com/software/simple-arduino-robot-control/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Eagle Project</title>
		<link>http://aeturnalus.com/news/eagle-project/</link>
		<comments>http://aeturnalus.com/news/eagle-project/#comments</comments>
		<pubDate>Sun, 27 Nov 2011 22:48:21 +0000</pubDate>
		<dc:creator>Robert Ying</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://aeturnalus.com/?p=1248</guid>
		<description><![CDATA[For the past two weekends I&#8217;ve been working on organizing and executing my Eagle project, which is to construct a pair of lecterns for Lynbrook High School. Noticing that we have a shortage of such pieces of furniture, and that &#8230; <a href="http://aeturnalus.com/news/eagle-project/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img src="http://aeturnalus.com/wp/wp-content/uploads/2011/11/IMG_1870.jpg" height="480" width="640" alt="A completed project" title="A completed and finished project" /></p>
<p>For the past two weekends I&#8217;ve been working on organizing and executing my Eagle project, which is to construct a pair of lecterns for Lynbrook High School. Noticing that we have a shortage of such pieces of furniture, and that they are rather expensive to acquire directly, I decided to build these lecterns to benefit both the faculty and the student population at my school.<br />
<span id="more-1248"></span></p>
<p>I started my project by designing a quick 3D model to lay out the dimensions and get an idea of what it would look like:<br />
<iframe style="overflow:none;border:none;" src="http://aeturnalus.com/upload/files/lectern3d/index.html" width="640" height="520">Your browser does not support iframes, please go to http://aeturnalus.com/upload/files/lectern3d/</iframe></p>
<p>And then built it over the course of a weekend with the help of scouts from my troop. This weekend, we put the finishing touches on it by staining and varnishing the wood, so that the color will last longer and the lectern will be sturdier and more durable in general.</p>
<p>A slideshow of the various service project sessions:</p>
<blockquote style="margin-left:-48px;margin-top:-20px;position:relative;float:left;width:640px;height:540px;padding-bottom:32px;"><div id="portfolio-slideshow0" class="portfolio-slideshow">
	<div class="slideshow-next slideshow-content">
			<a href="javascript: void(0);" class="slideshow-next"><img class="psp-active" data-img="/wp/wp-content/uploads/2011/11/IMG_20111119_140645.jpg" src="/wp/wp-content/uploads/2011/11/IMG_20111119_140645.jpg" height="491" width="655" alt="Scouts working on measuring and assembling parts of the first lectern" /><noscript><img src="/wp/wp-content/uploads/2011/11/IMG_20111119_140645.jpg" height="491" width="655" alt="Scouts working on measuring and assembling parts of the first lectern" /></noscript></a><div class="slideshow-meta"><p class="slideshow-title">Scouts working on measuring and assembling parts of the first lectern</p></div></div>
			<div class="not-first slideshow-next slideshow-content">
			<a href="javascript: void(0);" class="slideshow-next"><img class="psp-active" data-img="/wp/wp-content/uploads/2011/11/IMG_20111119_140654.jpg" src="http://aeturnalus.com/wp/wp-content/plugins/portfolio-slideshow/img/tiny.png" height="491" width="655" alt="Some scouts marking out lines to be cut" /><noscript><img src="/wp/wp-content/uploads/2011/11/IMG_20111119_140654.jpg" height="491" width="655" alt="Some scouts marking out lines to be cut" /></noscript></a><div class="slideshow-meta"><p class="slideshow-title">Some scouts marking out lines to be cut</p></div></div>
			<div class="not-first slideshow-next slideshow-content">
			<a href="javascript: void(0);" class="slideshow-next"><img class="psp-active" data-img="/wp/wp-content/uploads/2011/11/IMG_20111119_140705.jpg" src="http://aeturnalus.com/wp/wp-content/plugins/portfolio-slideshow/img/tiny.png" height="491" width="655" alt="Mr. Ying getting ready to cut some plywood" /><noscript><img src="/wp/wp-content/uploads/2011/11/IMG_20111119_140705.jpg" height="491" width="655" alt="Mr. Ying getting ready to cut some plywood" /></noscript></a><div class="slideshow-meta"><p class="slideshow-title">Mr. Ying getting ready to cut some plywood</p></div></div>
			<div class="not-first slideshow-next slideshow-content">
			<a href="javascript: void(0);" class="slideshow-next"><img class="psp-active" data-img="/wp/wp-content/uploads/2011/11/IMG_20111119_152615.jpg" src="http://aeturnalus.com/wp/wp-content/plugins/portfolio-slideshow/img/tiny.png" height="491" width="655" alt="Scouts beginning to nail plywood to the frame underneath" /><noscript><img src="/wp/wp-content/uploads/2011/11/IMG_20111119_152615.jpg" height="491" width="655" alt="Scouts beginning to nail plywood to the frame underneath" /></noscript></a><div class="slideshow-meta"><p class="slideshow-title">Scouts beginning to nail plywood to the frame underneath</p></div></div>
			<div class="not-first slideshow-next slideshow-content">
			<a href="javascript: void(0);" class="slideshow-next"><img class="psp-active" data-img="/wp/wp-content/uploads/2011/11/IMG_20111119_152623.jpg" src="http://aeturnalus.com/wp/wp-content/plugins/portfolio-slideshow/img/tiny.png" height="491" width="655" alt="A scout positioning a part to be glued." /><noscript><img src="/wp/wp-content/uploads/2011/11/IMG_20111119_152623.jpg" height="491" width="655" alt="A scout positioning a part to be glued." /></noscript></a><div class="slideshow-meta"><p class="slideshow-title">A scout positioning a part to be glued.</p></div></div>
			<div class="not-first slideshow-next slideshow-content">
			<a href="javascript: void(0);" class="slideshow-next"><img class="psp-active" data-img="/wp/wp-content/uploads/2011/11/IMG_20111119_153604.jpg" src="http://aeturnalus.com/wp/wp-content/plugins/portfolio-slideshow/img/tiny.png" height="491" width="655" alt="Scouts working together to use the nailgun" /><noscript><img src="/wp/wp-content/uploads/2011/11/IMG_20111119_153604.jpg" height="491" width="655" alt="Scouts working together to use the nailgun" /></noscript></a><div class="slideshow-meta"><p class="slideshow-title">Scouts working together to use the nailgun</p></div></div>
			<div class="not-first slideshow-next slideshow-content">
			<a href="javascript: void(0);" class="slideshow-next"><img class="psp-active" data-img="/wp/wp-content/uploads/2011/11/IMG_20111120_110452.jpg" src="http://aeturnalus.com/wp/wp-content/plugins/portfolio-slideshow/img/tiny.png" height="491" width="655" alt="A completed lectern! Not quite stained yet, though." /><noscript><img src="/wp/wp-content/uploads/2011/11/IMG_20111120_110452.jpg" height="491" width="655" alt="A completed lectern! Not quite stained yet, though." /></noscript></a><div class="slideshow-meta"><p class="slideshow-title">A completed lectern! Not quite stained yet, though.</p></div></div>
			<div class="not-first slideshow-next slideshow-content">
			<a href="javascript: void(0);" class="slideshow-next"><img class="psp-active" data-img="/wp/wp-content/uploads/2011/11/IMG_20111120_131723.jpg" src="http://aeturnalus.com/wp/wp-content/plugins/portfolio-slideshow/img/tiny.png" height="491" width="655" alt="Scouts discussing what to do next" /><noscript><img src="/wp/wp-content/uploads/2011/11/IMG_20111120_131723.jpg" height="491" width="655" alt="Scouts discussing what to do next" /></noscript></a><div class="slideshow-meta"><p class="slideshow-title">Scouts discussing what to do next</p></div></div>
			<div class="not-first slideshow-next slideshow-content">
			<a href="javascript: void(0);" class="slideshow-next"><img class="psp-active" data-img="/wp/wp-content/uploads/2011/11/IMG_20111120_160705.jpg" src="http://aeturnalus.com/wp/wp-content/plugins/portfolio-slideshow/img/tiny.png" height="491" width="655" alt="Scouts working outside" /><noscript><img src="/wp/wp-content/uploads/2011/11/IMG_20111120_160705.jpg" height="491" width="655" alt="Scouts working outside" /></noscript></a><div class="slideshow-meta"><p class="slideshow-title">Scouts working outside</p></div></div>
			<div class="not-first slideshow-next slideshow-content">
			<a href="javascript: void(0);" class="slideshow-next"><img class="psp-active" data-img="/wp/wp-content/uploads/2011/11/IMG_20111120_161630.jpg" src="http://aeturnalus.com/wp/wp-content/plugins/portfolio-slideshow/img/tiny.png" height="491" width="655" alt="Two completed lecterns!" /><noscript><img src="/wp/wp-content/uploads/2011/11/IMG_20111120_161630.jpg" height="491" width="655" alt="Two completed lecterns!" /></noscript></a><div class="slideshow-meta"><p class="slideshow-title">Two completed lecterns!</p></div></div>
			<div class="not-first slideshow-next slideshow-content">
			<a href="javascript: void(0);" class="slideshow-next"><img class="psp-active" data-img="/wp/wp-content/uploads/2011/11/IMG_20111120_161725.jpg" src="http://aeturnalus.com/wp/wp-content/plugins/portfolio-slideshow/img/tiny.png" height="491" width="655" alt="And the rest of the group..." /><noscript><img src="/wp/wp-content/uploads/2011/11/IMG_20111120_161725.jpg" height="491" width="655" alt="And the rest of the group..." /></noscript></a><div class="slideshow-meta"><p class="slideshow-title">And the rest of the group...</p></div></div>
			<div class="not-first slideshow-next slideshow-content">
			<a href="javascript: void(0);" class="slideshow-next"><img class="psp-active" data-img="/wp/wp-content/uploads/2011/11/IMG_20111126_134715.jpg" src="http://aeturnalus.com/wp/wp-content/plugins/portfolio-slideshow/img/tiny.png" height="491" width="655" alt="Scouts beginning to stain the lectern" /><noscript><img src="/wp/wp-content/uploads/2011/11/IMG_20111126_134715.jpg" height="491" width="655" alt="Scouts beginning to stain the lectern" /></noscript></a><div class="slideshow-meta"><p class="slideshow-title">Scouts beginning to stain the lectern</p></div></div>
			<div class="not-first slideshow-next slideshow-content">
			<a href="javascript: void(0);" class="slideshow-next"><img class="psp-active" data-img="/wp/wp-content/uploads/2011/11/IMG_20111126_135704.jpg" src="http://aeturnalus.com/wp/wp-content/plugins/portfolio-slideshow/img/tiny.png" height="491" width="655" alt="Scouts sanding down the surfaces" /><noscript><img src="/wp/wp-content/uploads/2011/11/IMG_20111126_135704.jpg" height="491" width="655" alt="Scouts sanding down the surfaces" /></noscript></a><div class="slideshow-meta"><p class="slideshow-title">Scouts sanding down the surfaces</p></div></div>
			<div class="not-first slideshow-next slideshow-content">
			<a href="javascript: void(0);" class="slideshow-next"><img class="psp-active" data-img="/wp/wp-content/uploads/2011/11/IMG_20111126_135710.jpg" src="http://aeturnalus.com/wp/wp-content/plugins/portfolio-slideshow/img/tiny.png" height="491" width="655" alt="Some more staining" /><noscript><img src="/wp/wp-content/uploads/2011/11/IMG_20111126_135710.jpg" height="491" width="655" alt="Some more staining" /></noscript></a><div class="slideshow-meta"><p class="slideshow-title">Some more staining</p></div></div>
			<div class="not-first slideshow-next slideshow-content">
			<a href="javascript: void(0);" class="slideshow-next"><img class="psp-active" data-img="/wp/wp-content/uploads/2011/11/IMG_20111126_135717.jpg" src="http://aeturnalus.com/wp/wp-content/plugins/portfolio-slideshow/img/tiny.png" height="491" width="655" alt="Sanding down the ... other ... lectern" /><noscript><img src="/wp/wp-content/uploads/2011/11/IMG_20111126_135717.jpg" height="491" width="655" alt="Sanding down the ... other ... lectern" /></noscript></a><div class="slideshow-meta"><p class="slideshow-title">Sanding down the ... other ... lectern</p></div></div>
			<div class="not-first slideshow-next slideshow-content">
			<a href="javascript: void(0);" class="slideshow-next"><img class="psp-active" data-img="/wp/wp-content/uploads/2011/11/IMG_20111127_091406.jpg" src="http://aeturnalus.com/wp/wp-content/plugins/portfolio-slideshow/img/tiny.png" height="491" width="655" alt="Scouts applying varnish to the lecterns" /><noscript><img src="/wp/wp-content/uploads/2011/11/IMG_20111127_091406.jpg" height="491" width="655" alt="Scouts applying varnish to the lecterns" /></noscript></a><div class="slideshow-meta"><p class="slideshow-title">Scouts applying varnish to the lecterns</p></div></div>
			<div class="not-first slideshow-next slideshow-content">
			<a href="javascript: void(0);" class="slideshow-next"><img class="psp-active" data-img="/wp/wp-content/uploads/2011/11/IMG_20111127_091504.jpg" src="http://aeturnalus.com/wp/wp-content/plugins/portfolio-slideshow/img/tiny.png" height="491" width="655" alt="Finishing up the varnish work" /><noscript><img src="/wp/wp-content/uploads/2011/11/IMG_20111127_091504.jpg" height="491" width="655" alt="Finishing up the varnish work" /></noscript></a><div class="slideshow-meta"><p class="slideshow-title">Finishing up the varnish work</p></div></div>
			<div class="not-first slideshow-next slideshow-content">
			<a href="javascript: void(0);" class="slideshow-next"><img class="psp-active" data-img="/wp/wp-content/uploads/2011/11/IMG_20111127_105404.jpg" src="http://aeturnalus.com/wp/wp-content/plugins/portfolio-slideshow/img/tiny.png" height="491" width="655" alt="Scouts admiring their work" /><noscript><img src="/wp/wp-content/uploads/2011/11/IMG_20111127_105404.jpg" height="491" width="655" alt="Scouts admiring their work" /></noscript></a><div class="slideshow-meta"><p class="slideshow-title">Scouts admiring their work</p></div></div>
			<div class="not-first slideshow-next slideshow-content">
			<a href="javascript: void(0);" class="slideshow-next"><img class="psp-active" data-img="/wp/wp-content/uploads/2011/11/IMG_20111127_105409.jpg" src="http://aeturnalus.com/wp/wp-content/plugins/portfolio-slideshow/img/tiny.png" height="491" width="655" alt="A few more scouts celebrating" /><noscript><img src="/wp/wp-content/uploads/2011/11/IMG_20111127_105409.jpg" height="491" width="655" alt="A few more scouts celebrating" /></noscript></a><div class="slideshow-meta"><p class="slideshow-title">A few more scouts celebrating</p></div></div>
			<div class="not-first slideshow-next slideshow-content">
			<a href="javascript: void(0);" class="slideshow-next"><img class="psp-active" data-img="/wp/wp-content/uploads/2011/11/IMG_1870.jpg" src="http://aeturnalus.com/wp/wp-content/plugins/portfolio-slideshow/img/tiny.png" height="491" width="655" alt="A completed and finished project!" /><noscript><img src="/wp/wp-content/uploads/2011/11/IMG_1870.jpg" height="491" width="655" alt="A completed and finished project!" /></noscript></a><div class="slideshow-meta"><p class="slideshow-title">A completed and finished project!</p></div></div>
			</div><!--#portfolio-slideshow--></div><!--#slideshow-wrapper--></blockquote>
<p>More details about the project can be found by reading my project reports, linked below:</p>
<ul>
<li><a href="http://aeturnalus.com/wp/wp-content/uploads/2011/11/day_1_report.pdf">Day 1 Report</a></li>
<li><a href="http://aeturnalus.com/wp/wp-content/uploads/2011/11/day_2_report.pdf">Day 2 Report</a></li>
<li><a href="http://aeturnalus.com/wp/wp-content/uploads/2011/11/day_3_4_report.pdf">Day 3 and 4 Report</a></li>
</ul>
<p>Thanks to all of the people who helped me out on this project!</p>
<!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://aeturnalus.com/news/eagle-project/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A sneak peek&#8230;</title>
		<link>http://aeturnalus.com/robotics/sneak-peek/</link>
		<comments>http://aeturnalus.com/robotics/sneak-peek/#comments</comments>
		<pubDate>Sat, 19 Nov 2011 18:26:03 +0000</pubDate>
		<dc:creator>Robert Ying</dc:creator>
				<category><![CDATA[Robotics]]></category>

		<guid isPermaLink="false">http://aeturnalus.com/?p=1244</guid>
		<description><![CDATA[A sneak peek at upcoming developments:]]></description>
			<content:encoded><![CDATA[<p>A sneak peek at upcoming developments:<br />
<img src="http://aeturnalus.com/wp/wp-content/uploads/2011/11/2011-11-14-20.59.41.jpg" alt="" title="What could this be...?" width="640" height="539" class="alignnone size-full wp-image-1245" /></p>
<!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://aeturnalus.com/robotics/sneak-peek/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Prospect Invitational (Winning it, that is)</title>
		<link>http://aeturnalus.com/speech-and-debate/prospect-invitational-winning-it-is/</link>
		<comments>http://aeturnalus.com/speech-and-debate/prospect-invitational-winning-it-is/#comments</comments>
		<pubDate>Sun, 30 Oct 2011 14:53:32 +0000</pubDate>
		<dc:creator>Robert Ying</dc:creator>
				<category><![CDATA[Speech and Debate]]></category>

		<guid isPermaLink="false">http://aeturnalus.com/?p=1238</guid>
		<description><![CDATA[The Prospect Invitational yesterday (Saturday, October 29th, 2011) was my first debate tournament for a full year—I didn&#8217;t manage to get to any as a junior. As a result, it came to be somewhat of a surprise as my partner &#8230; <a href="http://aeturnalus.com/speech-and-debate/prospect-invitational-winning-it-is/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The Prospect Invitational yesterday (Saturday, October 29th, 2011) was my first debate tournament for a full year—I didn&#8217;t manage to get to any as a junior. As a result, it came to be somewhat of a surprise as my partner (Anjana Rao) and I finished the tournament with a 5-0 undefeated record.</p>
<p>More than just the debate, though, my speaking seems to have changed pretty significantly—I used to get relatively few speaker points, and rely on argumentation to win, but at Prospect I walked away with the second speaker award (following first by only 0.25 speaker points).</p>
<p>Since Prospect had hidden elimination rounds, the final round (that is, the Finals round) was rather interesting. The second speaker on the team we were supposed to debate (Milpitas GO) had decided to leave with his girlfriend, since we were unaware that it was actually the Finals round. As a result, another member of their team stepped in to fill the spot, and we began the debate. Just after my first speech, however, their coach ran in and forfeited them, giving us the win&#8230; with a seven-minute round.</p>
<!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://aeturnalus.com/speech-and-debate/prospect-invitational-winning-it-is/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>I&#8217;ve converted&#8230; TI-89!</title>
		<link>http://aeturnalus.com/school/converted-ti-89/</link>
		<comments>http://aeturnalus.com/school/converted-ti-89/#comments</comments>
		<pubDate>Sun, 02 Oct 2011 01:26:39 +0000</pubDate>
		<dc:creator>Robert Ying</dc:creator>
				<category><![CDATA[School]]></category>

		<guid isPermaLink="false">http://aeturnalus.com/?p=1232</guid>
		<description><![CDATA[Due to Multivariable Calculus, I&#8217;ve finally converted to a TI-89 Titanium&#8230; the TI-84+ just can&#8217;t cut it anymore. It&#8217;s served me well (since 7th grade!) but I feel it&#8217;s time to move on.]]></description>
			<content:encoded><![CDATA[<p>Due to Multivariable Calculus, I&#8217;ve finally converted to a TI-89 Titanium&#8230; the TI-84+ just can&#8217;t cut it anymore. It&#8217;s served me well (since 7th grade!) but I feel it&#8217;s time to move on.</p>
<div id="attachment_1234" class="wp-caption alignnone" style="width: 650px"><a href="http://aeturnalus.com/wp/wp-content/uploads/2011/10/calc.jpg" rel="lightbox" title="The TI-84+ and the TI-89 Titanium"><img src="http://aeturnalus.com/wp/wp-content/uploads/2011/10/calc-s.jpg" alt="" title="The TI-84+ and the TI-89 Titanium" width="640" height="480" class="size-full wp-image-1234" /></a><p class="wp-caption-text">The TI-84+ and the TI-89 Titanium</p></div>
<!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://aeturnalus.com/school/converted-ti-89/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Update: Wheels!</title>
		<link>http://aeturnalus.com/robotics/wheels/</link>
		<comments>http://aeturnalus.com/robotics/wheels/#comments</comments>
		<pubDate>Sat, 01 Oct 2011 00:35:07 +0000</pubDate>
		<dc:creator>Robert Ying</dc:creator>
				<category><![CDATA[Robotics]]></category>

		<guid isPermaLink="false">http://aeturnalus.com/?p=1213</guid>
		<description><![CDATA[I finished up the wheel replacement today with a pair of Vex Omniwheels, which have little rollers on them to allow movement perpendicular to the way they&#8217;re mounted, thus resolving the previous shearing force problems. Unfortunately, since my motor shafts &#8230; <a href="http://aeturnalus.com/robotics/wheels/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div id="attachment_1222" class="wp-caption alignnone" style="width: 650px"><img src="http://aeturnalus.com/wp/wp-content/uploads/2011/09/robot_iso_s.jpg" alt="" title="The Robot" width="640" height="480" class="size-full wp-image-1222" /><p class="wp-caption-text">The Companion Cube&mdash;with new wheels!</p></div>
<p><iframe src="http://player.vimeo.com/video/29863269" width="640" height="424" frameborder="0" webkitAllowFullScreen allowFullScreen></iframe></p>
<p>I finished up the wheel replacement today with a pair of Vex Omniwheels, which have little rollers on them to allow movement perpendicular to the way they&#8217;re mounted, thus resolving the previous shearing force problems. </p>
<div id="attachment_1223" class="wp-caption alignnone" style="width: 650px"><img src="http://aeturnalus.com/wp/wp-content/uploads/2011/09/omniwheel_s.jpg" alt="" title="An Omniwheel" width="640" height="448" class="size-full wp-image-1223" /><p class="wp-caption-text">An Omniwheel</p></div>
<p>Unfortunately, since my motor shafts are 6mm single-flat and the Vex wheels are designed for 0.125&#8243; square, I had to drill the wheels out a bit to make it work. Lacking a drill press, I made do with a slightly smaller drill bit, a hand drill, and a rotary tool, adding in a few screws to adjust the fit and to lock the wheel against the single flat. Although there were some mistakes, I think it turned out rather well:</p>
<div id="attachment_1225" class="wp-caption alignnone" style="width: 650px"><img src="http://aeturnalus.com/wp/wp-content/uploads/2011/09/closeup_1_s.jpg" alt="" title="Closeup Left" width="640" height="480" class="size-full wp-image-1225" /><p class="wp-caption-text">Closeup of the left side of the robot</p></div>
<div id="attachment_1224" class="wp-caption alignnone" style="width: 650px"><img src="http://aeturnalus.com/wp/wp-content/uploads/2011/09/closeup_2_s.jpg" alt="" title="Closeup Right" width="640" height="480" class="size-full wp-image-1224" /><p class="wp-caption-text">Closeup of the right side of the robot</p></div>
<p>The larger wheels get over bumps more easily, and they make it faster, both to turn and to drive&mdash;the omniwheels are especially helpful while turning, as they allow me to treat the system as a two-wheel system at the back instead of a four-wheel system like it actually is. </p>
<!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://aeturnalus.com/robotics/wheels/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Water Rockets</title>
		<link>http://aeturnalus.com/school/water-rockets/</link>
		<comments>http://aeturnalus.com/school/water-rockets/#comments</comments>
		<pubDate>Sat, 01 Oct 2011 00:21:49 +0000</pubDate>
		<dc:creator>Robert Ying</dc:creator>
				<category><![CDATA[School]]></category>

		<guid isPermaLink="false">http://aeturnalus.com/?p=1212</guid>
		<description><![CDATA[So we just finished up our unit in Engineering Tech on water rocketry, and I figured I&#8217;d post some pictures of our rockets. They all beat the required 150 foot height by a decent amount&#8212;our highest was about 260 feet &#8230; <a href="http://aeturnalus.com/school/water-rockets/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>So we just finished up our unit in Engineering Tech on water rocketry, and I figured I&#8217;d post some pictures of our rockets. They all beat the required 150 foot height by a decent amount&mdash;our highest was about 260 feet from the ground, as measured by the rather inaccurate triangulation based altimeters. </p>
<div id="attachment_1220" class="wp-caption alignnone" style="width: 650px"><img src="http://aeturnalus.com/wp/wp-content/uploads/2011/09/bee_bomb_1_s.jpg" alt="" title="The Bee Bomb" width="640" height="480" class="size-full wp-image-1220" /><p class="wp-caption-text">The Bee Bomb</p></div>
<div id="attachment_1219" class="wp-caption alignnone" style="width: 650px"><img src="http://aeturnalus.com/wp/wp-content/uploads/2011/09/bee_bomb_2_s.jpg" alt="" title="The Bee Bomb—close up" width="640" height="480" class="size-full wp-image-1219" /><p class="wp-caption-text">The Bee Bomb—close up</p></div>
<div id="attachment_1218" class="wp-caption alignnone" style="width: 650px"><img src="http://aeturnalus.com/wp/wp-content/uploads/2011/09/bumblebee_1_s.jpg" alt="" title="Bumblebee One" width="640" height="480" class="size-full wp-image-1218" /><p class="wp-caption-text">Bumblebee One</p></div>
<div id="attachment_1217" class="wp-caption alignnone" style="width: 650px"><img src="http://aeturnalus.com/wp/wp-content/uploads/2011/09/bumblebee_2_s.jpg" alt="" title="Bumblebee One, again" width="640" height="480" class="size-full wp-image-1217" /><p class="wp-caption-text">Bumblebee One, again</p></div>
<!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://aeturnalus.com/school/water-rockets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Status Update: Rolling Along</title>
		<link>http://aeturnalus.com/robotics/status-update-rolling/</link>
		<comments>http://aeturnalus.com/robotics/status-update-rolling/#comments</comments>
		<pubDate>Tue, 27 Sep 2011 20:42:44 +0000</pubDate>
		<dc:creator>Robert Ying</dc:creator>
				<category><![CDATA[Robotics]]></category>

		<guid isPermaLink="false">http://aeturnalus.com/?p=1207</guid>
		<description><![CDATA[I&#8217;m still not quite done with all of the updates for my robot&#8212;most notably the wheels. I&#8217;ve actually run into a little trouble: the wheels I was intending to use are actually too good at sticking to the ground to &#8230; <a href="http://aeturnalus.com/robotics/status-update-rolling/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m still not quite done with all of the updates for my robot&mdash;most notably the wheels. I&#8217;ve actually run into a little trouble: the wheels I was intending to use are actually too good at sticking to the ground to turn easily&mdash;the rubber tires fall off every once in a while. To solve this, I&#8217;m planning to use some omniwheels for the front, which should convert the drive system from four drive wheels to only two, and thus reduce the shearing force on the wheels. </p>
<div id="attachment_1208" class="wp-caption alignnone" style="width: 650px"><img src="http://aeturnalus.com/wp/wp-content/uploads/2011/09/new_wheels_small.jpg" alt="" title="New wheels" width="640" height="480" class="size-full wp-image-1208" /><p class="wp-caption-text">Got some new rear drive wheels, but I&#039;m still waiting on the omniwheels for the front.</p></div>
<p>I&#8217;ve also got a (really short) video from before I started the wheel switch:</p>
<p><img src="http://aeturnalus.com/wp/wp-content/plugins/flash-video-player/default_video_player.gif" /></p>
<!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://aeturnalus.com/robotics/status-update-rolling/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://tpmo.im/upload/robot/quick_drive_test.flv" length="1048576" type="video/x-flv" />
		</item>
		<item>
		<title>Snapshot: Work in Progress</title>
		<link>http://aeturnalus.com/robotics/snapshot-work-progress/</link>
		<comments>http://aeturnalus.com/robotics/snapshot-work-progress/#comments</comments>
		<pubDate>Mon, 15 Aug 2011 20:14:57 +0000</pubDate>
		<dc:creator>Robert Ying</dc:creator>
				<category><![CDATA[Robotics]]></category>

		<guid isPermaLink="false">http://aeturnalus.com/?p=1198</guid>
		<description><![CDATA[Over the summer, I&#8217;ve been working on restructuring much of the robot&#8212;both to reduce its physical size and to reduce its power requirements. A short (and incomplete) list of changes: Switch from old laptop motherboard to an Artigo pico-itx computer &#8230; <a href="http://aeturnalus.com/robotics/snapshot-work-progress/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Over the summer, I&#8217;ve been working on restructuring much of the robot&mdash;both to reduce its physical size and to reduce its power requirements.</p>
<p>A short (and incomplete) list of changes:</p>
<ol>
<li>Switch from old laptop motherboard to an Artigo pico-itx computer</li>
<li>Move the Kinect down&mdash;empirical data shows that it does not need to be placed very high to get useful readings</li>
<li>Elevate the base (by using bigger wheels): I&#8217;ve had troubles getting over bumps due to low ground clearance</li>
<li>Change microcontrollers from an ATMega328P to a ATMega2560</li>
<li>Add an LCD for quick feedback on important things like battery voltage and motor speed</li>
</ol>
<p>Source code is available for download&mdash;there&#8217;s a Git repository at tpmo.im/robot.git.<br />
<code><br />
git clone git://tpmo.im/robot.git<br />
</code><br />
Alternatively, browse the repository over the internet <a href="http://tpmo.im/viewgit">here</a></p>
<p>Pictures:<br />
<div id="attachment_1199" class="wp-caption alignnone" style="width: 650px"><img src="http://aeturnalus.com/wp/wp-content/uploads/2011/09/new_cpu_small.jpg" alt="" title="Artigo!" width="640" height="480" class="size-full wp-image-1199" /><p class="wp-caption-text">Replaced the computer and moved the kinect. It&#039;s a lot smaller now!</p></div><br />
<span id="more-1198"></span><br />
<div id="attachment_1200" class="wp-caption alignnone" style="width: 650px"><img src="http://aeturnalus.com/wp/wp-content/uploads/2011/09/new_lcd_1_small.jpg" alt="" title="Liquid Crystal Display" width="640" height="480" class="size-full wp-image-1200" /><p class="wp-caption-text">Added a LCD for status feedback</p></div></p>
<div id="attachment_1202" class="wp-caption alignnone" style="width: 650px"><img src="http://aeturnalus.com/wp/wp-content/uploads/2011/09/new_lcd_2_small.jpg" alt="" title="LCD Closeup" width="640" height="480" class="size-full wp-image-1202" /><p class="wp-caption-text">Closeup on the LCD</p></div>
<!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://aeturnalus.com/robotics/snapshot-work-progress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
Content-Type: text/html

<title> </title>

