<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://wiki.roberttwomey.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=S8brown</id>
		<title>Robert-Depot - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="http://wiki.roberttwomey.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=S8brown"/>
		<link rel="alternate" type="text/html" href="http://wiki.roberttwomey.com/Special:Contributions/S8brown"/>
		<updated>2026-04-05T12:26:09Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.27.1</generator>

	<entry>
		<id>http://wiki.roberttwomey.com/index.php?title=User:S8brown&amp;diff=1000</id>
		<title>User:S8brown</title>
		<link rel="alternate" type="text/html" href="http://wiki.roberttwomey.com/index.php?title=User:S8brown&amp;diff=1000"/>
				<updated>2009-06-12T02:48:58Z</updated>
		
		<summary type="html">&lt;p&gt;S8brown: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hi I&amp;#039;m Seth.&lt;br /&gt;
&lt;br /&gt;
For my midterm project, I created a tilt sensing motor.&lt;br /&gt;
I made two tilt sensors out of ball bearings and bic pens and positioned them on either side of the motor at different angles.&lt;br /&gt;
When the motor/device is tilted in one direction, it will spin clockwise, and when tilted the other direction, counter-clockwise.&lt;br /&gt;
Originally I wanted to control a toy that would fall over and correct itself, but the motor it used takes a little more power than I was able to supply directly from the microprocessor, so this might be considered to be a prototype.&lt;br /&gt;
As for the aesthetic of the device, it would be fitted to the duty it was designed to perform such as a handle for a fishing pole, etc.&lt;br /&gt;
For testing, I affixed the components to a toilet paper tube with the tilt sensors pointing up a little bit so that they won&amp;#039;t always be triggering.&lt;br /&gt;
&lt;br /&gt;
(I let my friend borrow my Arduino, so there aren&amp;#039;t any pictures of the &amp;quot;device&amp;quot; as a whole, but here are the main components!)&lt;br /&gt;
&lt;br /&gt;
[[Image:Photo.png]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Photo2.png]]&lt;br /&gt;
&lt;br /&gt;
And Here&amp;#039;s the code!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
    int turn1 = 12;            // choose the pins for controlling direction &amp;lt;br&amp;gt;&lt;br /&gt;
    int turn2 = 13;&amp;lt;br&amp;gt;&lt;br /&gt;
    int tilt1 = 4;                 // choose the input pin (for the tilt sensors)&amp;lt;br&amp;gt;&lt;br /&gt;
    int tilt2 = 5;&amp;lt;br&amp;gt;&lt;br /&gt;
    int val1 = 0;                    // variable for reading the pin status&amp;lt;br&amp;gt;&lt;br /&gt;
    int val2 = 0;&amp;lt;br&amp;gt;&lt;br /&gt;
    void setup() {&amp;lt;br&amp;gt;&lt;br /&gt;
      pinMode(turn1, OUTPUT);      // declare turn pins as output&amp;lt;br&amp;gt;&lt;br /&gt;
      pinMode(turn2, OUTPUT);&amp;lt;br&amp;gt;&lt;br /&gt;
      pinMode(tilt1, INPUT);     // declare tilt sensors as input&amp;lt;br&amp;gt;&lt;br /&gt;
      pinMode(tilt2, INPUT);&amp;lt;br&amp;gt;&lt;br /&gt;
  &lt;br /&gt;
      digitalWrite(0,HIGH);     // write a HIGH to allow for current to flow through pin&amp;lt;br&amp;gt;&lt;br /&gt;
      digitalWrite(1,HIGH);&amp;lt;br&amp;gt;&lt;br /&gt;
    }&lt;br /&gt;
    void loop(){&lt;br /&gt;
      val1 = digitalRead(tilt1);  // read input value&lt;br /&gt;
      val2 = digitalRead(tilt2);&lt;br /&gt;
  &lt;br /&gt;
      if (val1 == HIGH) {         // if tilted, turn the motor!&lt;br /&gt;
        pinMode(turn1,OUTPUT);    // turn the pins on&lt;br /&gt;
        pinMode(turn2,OUTPUT);    &lt;br /&gt;
        digitalWrite(turn1, LOW);  // turn the motor!&lt;br /&gt;
        digitalWrite(turn2, HIGH);&lt;br /&gt;
      }&lt;br /&gt;
      if (val2 == HIGH) {         // if tilted, turn the motor!&lt;br /&gt;
        pinMode(turn1,OUTPUT);     // turn the pins on&lt;br /&gt;
        pinMode(turn2,OUTPUT);&lt;br /&gt;
        digitalWrite(turn1, HIGH);   // turn the motor the other way!&lt;br /&gt;
        digitalWrite(turn2, LOW);&lt;br /&gt;
      }&lt;br /&gt;
      if(val1 != HIGH &amp;amp;&amp;amp; val2 != HIGH){ // if it&amp;#039;s not tilted either way&lt;br /&gt;
        pinMode(turn1,INPUT);   // turn the output pins &amp;quot;off&amp;quot;&lt;br /&gt;
        pinMode(turn2,INPUT);&lt;br /&gt;
     }&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[User:S8brown/Project | Other Projects]]&lt;/div&gt;</summary>
		<author><name>S8brown</name></author>	</entry>

	<entry>
		<id>http://wiki.roberttwomey.com/index.php?title=User:S8brown&amp;diff=999</id>
		<title>User:S8brown</title>
		<link rel="alternate" type="text/html" href="http://wiki.roberttwomey.com/index.php?title=User:S8brown&amp;diff=999"/>
				<updated>2009-06-12T02:48:33Z</updated>
		
		<summary type="html">&lt;p&gt;S8brown: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hi I&amp;#039;m Seth.&lt;br /&gt;
&lt;br /&gt;
For my midterm project, I created a tilt sensing motor.&lt;br /&gt;
I made two tilt sensors out of ball bearings and bic pens and positioned them on either side of the motor at different angles.&lt;br /&gt;
When the motor/device is tilted in one direction, it will spin clockwise, and when tilted the other direction, counter-clockwise.&lt;br /&gt;
Originally I wanted to control a toy that would fall over and correct itself, but the motor it used takes a little more power than I was able to supply directly from the microprocessor, so this might be considered to be a prototype.&lt;br /&gt;
As for the aesthetic of the device, it would be fitted to the duty it was designed to perform such as a handle for a fishing pole, etc.&lt;br /&gt;
For testing, I affixed the components to a toilet paper tube with the tilt sensors pointing up a little bit so that they won&amp;#039;t always be triggering.&lt;br /&gt;
&lt;br /&gt;
(I let my friend borrow my Arduino, so there aren&amp;#039;t any pictures of the &amp;quot;device&amp;quot; as a whole, but here are the main components!)&lt;br /&gt;
&lt;br /&gt;
[[Image:Photo.png]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Photo2.png]]&lt;br /&gt;
&lt;br /&gt;
And Here&amp;#039;s the code!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
    int turn1 = 12;            // choose the pins for controlling direction &amp;lt;br&amp;gt;&lt;br /&gt;
    int turn2 = 13;&amp;lt;br&amp;gt;&lt;br /&gt;
    int tilt1 = 4;                 // choose the input pin (for the tilt sensors)&amp;lt;br&amp;gt;&lt;br /&gt;
    int tilt2 = 5;&amp;lt;br&amp;gt;&lt;br /&gt;
    int val1 = 0;                    // variable for reading the pin status&amp;lt;br&amp;gt;&lt;br /&gt;
    int val2 = 0;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
    void setup() {&amp;lt;br&amp;gt;&lt;br /&gt;
      pinMode(turn1, OUTPUT);      // declare turn pins as output&amp;lt;br&amp;gt;&lt;br /&gt;
      pinMode(turn2, OUTPUT);&amp;lt;br&amp;gt;&lt;br /&gt;
      pinMode(tilt1, INPUT);     // declare tilt sensors as input&amp;lt;br&amp;gt;&lt;br /&gt;
      pinMode(tilt2, INPUT);&amp;lt;br&amp;gt;&lt;br /&gt;
  &lt;br /&gt;
      digitalWrite(0,HIGH);     // write a HIGH to allow for current to flow through pin&amp;lt;br&amp;gt;&lt;br /&gt;
      digitalWrite(1,HIGH);&amp;lt;br&amp;gt;&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    void loop(){&lt;br /&gt;
      val1 = digitalRead(tilt1);  // read input value&lt;br /&gt;
      val2 = digitalRead(tilt2);&lt;br /&gt;
  &lt;br /&gt;
      if (val1 == HIGH) {         // if tilted, turn the motor!&lt;br /&gt;
        pinMode(turn1,OUTPUT);    // turn the pins on&lt;br /&gt;
        pinMode(turn2,OUTPUT);    &lt;br /&gt;
        digitalWrite(turn1, LOW);  // turn the motor!&lt;br /&gt;
        digitalWrite(turn2, HIGH);&lt;br /&gt;
      }&lt;br /&gt;
      if (val2 == HIGH) {         // if tilted, turn the motor!&lt;br /&gt;
        pinMode(turn1,OUTPUT);     // turn the pins on&lt;br /&gt;
        pinMode(turn2,OUTPUT);&lt;br /&gt;
        digitalWrite(turn1, HIGH);   // turn the motor the other way!&lt;br /&gt;
        digitalWrite(turn2, LOW);&lt;br /&gt;
      }&lt;br /&gt;
      if(val1 != HIGH &amp;amp;&amp;amp; val2 != HIGH){ // if it&amp;#039;s not tilted either way&lt;br /&gt;
        pinMode(turn1,INPUT);   // turn the output pins &amp;quot;off&amp;quot;&lt;br /&gt;
        pinMode(turn2,INPUT);&lt;br /&gt;
     }&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[User:S8brown/Project | Other Projects]]&lt;/div&gt;</summary>
		<author><name>S8brown</name></author>	</entry>

	<entry>
		<id>http://wiki.roberttwomey.com/index.php?title=User:S8brown&amp;diff=998</id>
		<title>User:S8brown</title>
		<link rel="alternate" type="text/html" href="http://wiki.roberttwomey.com/index.php?title=User:S8brown&amp;diff=998"/>
				<updated>2009-06-12T02:47:16Z</updated>
		
		<summary type="html">&lt;p&gt;S8brown: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hi I&amp;#039;m Seth.&lt;br /&gt;
&lt;br /&gt;
For my midterm project, I created a tilt sensing motor.&lt;br /&gt;
I made two tilt sensors out of ball bearings and bic pens and positioned them on either side of the motor at different angles.&lt;br /&gt;
When the motor/device is tilted in one direction, it will spin clockwise, and when tilted the other direction, counter-clockwise.&lt;br /&gt;
Originally I wanted to control a toy that would fall over and correct itself, but the motor it used takes a little more power than I was able to supply directly from the microprocessor, so this might be considered to be a prototype.&lt;br /&gt;
As for the aesthetic of the device, it would be fitted to the duty it was designed to perform such as a handle for a fishing pole, etc.&lt;br /&gt;
For testing, I affixed the components to a toilet paper tube with the tilt sensors pointing up a little bit so that they won&amp;#039;t always be triggering.&lt;br /&gt;
&lt;br /&gt;
(I let my friend borrow my Arduino, so there aren&amp;#039;t any pictures of the &amp;quot;device&amp;quot; as a whole, but here are the main components!)&lt;br /&gt;
&lt;br /&gt;
[[Image:Photo.png]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Photo2.png]]&lt;br /&gt;
&lt;br /&gt;
And Here&amp;#039;s the code!&lt;br /&gt;
{{&lt;br /&gt;
&lt;br /&gt;
int turn1 = 12;            // choose the pins for controlling direction &amp;lt;br&amp;gt;&lt;br /&gt;
int turn2 = 13;&amp;lt;br&amp;gt;&lt;br /&gt;
int tilt1 = 4;                 // choose the input pin (for the tilt sensors)&amp;lt;br&amp;gt;&lt;br /&gt;
int tilt2 = 5;&amp;lt;br&amp;gt;&lt;br /&gt;
int val1 = 0;                    // variable for reading the pin status&amp;lt;br&amp;gt;&lt;br /&gt;
int val2 = 0;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
void setup() {&amp;lt;br&amp;gt;&lt;br /&gt;
  pinMode(turn1, OUTPUT);      // declare turn pins as output&amp;lt;br&amp;gt;&lt;br /&gt;
  pinMode(turn2, OUTPUT);&amp;lt;br&amp;gt;&lt;br /&gt;
  pinMode(tilt1, INPUT);     // declare tilt sensors as input&amp;lt;br&amp;gt;&lt;br /&gt;
  pinMode(tilt2, INPUT);&amp;lt;br&amp;gt;&lt;br /&gt;
  &lt;br /&gt;
  digitalWrite(0,HIGH);     // write a HIGH to allow for current to flow through pin&amp;lt;br&amp;gt;&lt;br /&gt;
  digitalWrite(1,HIGH);&amp;lt;br&amp;gt;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
void loop(){&lt;br /&gt;
  val1 = digitalRead(tilt1);  // read input value&lt;br /&gt;
  val2 = digitalRead(tilt2);&lt;br /&gt;
  &lt;br /&gt;
  if (val1 == HIGH) {         // if tilted, turn the motor!&lt;br /&gt;
    pinMode(turn1,OUTPUT);    // turn the pins on&lt;br /&gt;
    pinMode(turn2,OUTPUT);    &lt;br /&gt;
    digitalWrite(turn1, LOW);  // turn the motor!&lt;br /&gt;
    digitalWrite(turn2, HIGH);&lt;br /&gt;
  }&lt;br /&gt;
  if (val2 == HIGH) {         // if tilted, turn the motor!&lt;br /&gt;
    pinMode(turn1,OUTPUT);     // turn the pins on&lt;br /&gt;
    pinMode(turn2,OUTPUT);&lt;br /&gt;
    digitalWrite(turn1, HIGH);   // turn the motor the other way!&lt;br /&gt;
    digitalWrite(turn2, LOW);&lt;br /&gt;
  }&lt;br /&gt;
  if(val1 != HIGH &amp;amp;&amp;amp; val2 != HIGH){ // if it&amp;#039;s not tilted either way&lt;br /&gt;
    pinMode(turn1,INPUT);   // turn the output pins &amp;quot;off&amp;quot;&lt;br /&gt;
    pinMode(turn2,INPUT);&lt;br /&gt;
 }&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
[[User:S8brown/Project | Other Projects]]&lt;/div&gt;</summary>
		<author><name>S8brown</name></author>	</entry>

	<entry>
		<id>http://wiki.roberttwomey.com/index.php?title=User:S8brown&amp;diff=997</id>
		<title>User:S8brown</title>
		<link rel="alternate" type="text/html" href="http://wiki.roberttwomey.com/index.php?title=User:S8brown&amp;diff=997"/>
				<updated>2009-06-12T02:46:49Z</updated>
		
		<summary type="html">&lt;p&gt;S8brown: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hi I&amp;#039;m Seth.&lt;br /&gt;
&lt;br /&gt;
For my midterm project, I created a tilt sensing motor.&lt;br /&gt;
I made two tilt sensors out of ball bearings and bic pens and positioned them on either side of the motor at different angles.&lt;br /&gt;
When the motor/device is tilted in one direction, it will spin clockwise, and when tilted the other direction, counter-clockwise.&lt;br /&gt;
Originally I wanted to control a toy that would fall over and correct itself, but the motor it used takes a little more power than I was able to supply directly from the microprocessor, so this might be considered to be a prototype.&lt;br /&gt;
As for the aesthetic of the device, it would be fitted to the duty it was designed to perform such as a handle for a fishing pole, etc.&lt;br /&gt;
For testing, I affixed the components to a toilet paper tube with the tilt sensors pointing up a little bit so that they won&amp;#039;t always be triggering.&lt;br /&gt;
&lt;br /&gt;
(I let my friend borrow my Arduino, so there aren&amp;#039;t any pictures of the &amp;quot;device&amp;quot; as a whole, but here are the main components!)&lt;br /&gt;
&lt;br /&gt;
[[Image:Photo.png]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Photo2.png]]&lt;br /&gt;
&lt;br /&gt;
And Here&amp;#039;s the code!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
int turn1 = 12;            // choose the pins for controlling direction &amp;lt;br&amp;gt;&lt;br /&gt;
int turn2 = 13;&amp;lt;br&amp;gt;&lt;br /&gt;
int tilt1 = 4;                 // choose the input pin (for the tilt sensors)&amp;lt;br&amp;gt;&lt;br /&gt;
int tilt2 = 5;&amp;lt;br&amp;gt;&lt;br /&gt;
int val1 = 0;                    // variable for reading the pin status&amp;lt;br&amp;gt;&lt;br /&gt;
int val2 = 0;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
void setup() {&amp;lt;br&amp;gt;&lt;br /&gt;
  pinMode(turn1, OUTPUT);      // declare turn pins as output&amp;lt;br&amp;gt;&lt;br /&gt;
  pinMode(turn2, OUTPUT);&amp;lt;br&amp;gt;&lt;br /&gt;
  pinMode(tilt1, INPUT);     // declare tilt sensors as input&amp;lt;br&amp;gt;&lt;br /&gt;
  pinMode(tilt2, INPUT);&amp;lt;br&amp;gt;&lt;br /&gt;
  &lt;br /&gt;
  digitalWrite(0,HIGH);     // write a HIGH to allow for current to flow through pin&amp;lt;br&amp;gt;&lt;br /&gt;
  digitalWrite(1,HIGH);&amp;lt;br&amp;gt;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
void loop(){&lt;br /&gt;
  val1 = digitalRead(tilt1);  // read input value&lt;br /&gt;
  val2 = digitalRead(tilt2);&lt;br /&gt;
  &lt;br /&gt;
  if (val1 == HIGH) {         // if tilted, turn the motor!&lt;br /&gt;
    pinMode(turn1,OUTPUT);    // turn the pins on&lt;br /&gt;
    pinMode(turn2,OUTPUT);    &lt;br /&gt;
    digitalWrite(turn1, LOW);  // turn the motor!&lt;br /&gt;
    digitalWrite(turn2, HIGH);&lt;br /&gt;
  }&lt;br /&gt;
  if (val2 == HIGH) {         // if tilted, turn the motor!&lt;br /&gt;
    pinMode(turn1,OUTPUT);     // turn the pins on&lt;br /&gt;
    pinMode(turn2,OUTPUT);&lt;br /&gt;
    digitalWrite(turn1, HIGH);   // turn the motor the other way!&lt;br /&gt;
    digitalWrite(turn2, LOW);&lt;br /&gt;
  }&lt;br /&gt;
  if(val1 != HIGH &amp;amp;&amp;amp; val2 != HIGH){ // if it&amp;#039;s not tilted either way&lt;br /&gt;
    pinMode(turn1,INPUT);   // turn the output pins &amp;quot;off&amp;quot;&lt;br /&gt;
    pinMode(turn2,INPUT);&lt;br /&gt;
 }&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[User:S8brown/Project | Other Projects]]&lt;/div&gt;</summary>
		<author><name>S8brown</name></author>	</entry>

	<entry>
		<id>http://wiki.roberttwomey.com/index.php?title=User:S8brown&amp;diff=996</id>
		<title>User:S8brown</title>
		<link rel="alternate" type="text/html" href="http://wiki.roberttwomey.com/index.php?title=User:S8brown&amp;diff=996"/>
				<updated>2009-06-12T02:44:53Z</updated>
		
		<summary type="html">&lt;p&gt;S8brown: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hi I&amp;#039;m Seth.&lt;br /&gt;
&lt;br /&gt;
For my midterm project, I created a tilt sensing motor.&lt;br /&gt;
I made two tilt sensors out of ball bearings and bic pens and positioned them on either side of the motor at different angles.&lt;br /&gt;
When the motor/device is tilted in one direction, it will spin clockwise, and when tilted the other direction, counter-clockwise.&lt;br /&gt;
As for the aesthetic of the device, it would be fitted to the duty it was designed to perform such as a handle for a fishing pole, etc.&lt;br /&gt;
For testing, I affixed the components to a toilet paper tube with the tilt sensors pointing up a little bit so that they won&amp;#039;t always be triggering.&lt;br /&gt;
&lt;br /&gt;
(I let my friend borrow my Arduino, so there aren&amp;#039;t any pictures of the &amp;quot;device&amp;quot; as a whole, but here are the main components!)&lt;br /&gt;
&lt;br /&gt;
[[Image:Photo.png]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Photo2.png]]&lt;br /&gt;
&lt;br /&gt;
And Here&amp;#039;s the code!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
int turn1 = 12;            // choose the pins for controlling direction&lt;br /&gt;
int turn2 = 13;&lt;br /&gt;
int tilt1 = 4;                 // choose the input pin (for the tilt sensors)&lt;br /&gt;
int tilt2 = 5;&lt;br /&gt;
int val1 = 0;                    // variable for reading the pin status&lt;br /&gt;
int val2 = 0;&lt;br /&gt;
&lt;br /&gt;
void setup() {&lt;br /&gt;
  pinMode(turn1, OUTPUT);      // declare turn pins as output&lt;br /&gt;
  pinMode(turn2, OUTPUT);&lt;br /&gt;
  pinMode(tilt1, INPUT);     // declare tilt sensors as input&lt;br /&gt;
  pinMode(tilt2, INPUT);&lt;br /&gt;
  &lt;br /&gt;
  digitalWrite(0,HIGH);     // write a HIGH to allow for current to flow through pin&lt;br /&gt;
  digitalWrite(1,HIGH);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
void loop(){&lt;br /&gt;
  val1 = digitalRead(tilt1);  // read input value&lt;br /&gt;
  val2 = digitalRead(tilt2);&lt;br /&gt;
  &lt;br /&gt;
  if (val1 == HIGH) {         // if tilted, turn the motor!&lt;br /&gt;
    pinMode(turn1,OUTPUT);    // turn the pins on&lt;br /&gt;
    pinMode(turn2,OUTPUT);    &lt;br /&gt;
    digitalWrite(turn1, LOW);  // turn the motor!&lt;br /&gt;
    digitalWrite(turn2, HIGH);&lt;br /&gt;
  }&lt;br /&gt;
  if (val2 == HIGH) {         // if tilted, turn the motor!&lt;br /&gt;
    pinMode(turn1,OUTPUT);     // turn the pins on&lt;br /&gt;
    pinMode(turn2,OUTPUT);&lt;br /&gt;
    digitalWrite(turn1, HIGH);   // turn the motor the other way!&lt;br /&gt;
    digitalWrite(turn2, LOW);&lt;br /&gt;
  }&lt;br /&gt;
  if(val1 != HIGH &amp;amp;&amp;amp; val2 != HIGH){ // if it&amp;#039;s not tilted either way&lt;br /&gt;
    pinMode(turn1,INPUT);   // turn the output pins &amp;quot;off&amp;quot;&lt;br /&gt;
    pinMode(turn2,INPUT);&lt;br /&gt;
 }&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[User:S8brown/Project | Other Projects]]&lt;/div&gt;</summary>
		<author><name>S8brown</name></author>	</entry>

	<entry>
		<id>http://wiki.roberttwomey.com/index.php?title=User:S8brown&amp;diff=995</id>
		<title>User:S8brown</title>
		<link rel="alternate" type="text/html" href="http://wiki.roberttwomey.com/index.php?title=User:S8brown&amp;diff=995"/>
				<updated>2009-06-12T02:44:33Z</updated>
		
		<summary type="html">&lt;p&gt;S8brown: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hi I&amp;#039;m Seth.&lt;br /&gt;
&lt;br /&gt;
For my midterm project, I created a tilt sensing motor.&lt;br /&gt;
I made two tilt sensors out of ball bearings and bic pens and positioned them on either side of the motor at different angles.&lt;br /&gt;
When the motor/device is tilted in one direction, it will spin clockwise, and when tilted the other direction, counter-clockwise.&lt;br /&gt;
As for the aesthetic of the device, it would be fitted to the duty it was designed to perform such as a handle for a fishing pole, etc.&lt;br /&gt;
For testing, I affixed the components to a toilet paper tube with the tilt sensors pointing up a little bit so that they won&amp;#039;t always be triggering.&lt;br /&gt;
&lt;br /&gt;
(I let my friend borrow my Arduino, so there aren&amp;#039;t any pictures of the &amp;quot;device&amp;quot; as a whole, but here are the main components!)&lt;br /&gt;
&lt;br /&gt;
[[Image:Photo.png]]&lt;br /&gt;
&lt;br /&gt;
[[Image:http:Photo2.png]]&lt;br /&gt;
&lt;br /&gt;
And Here&amp;#039;s the code!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
int turn1 = 12;            // choose the pins for controlling direction&lt;br /&gt;
int turn2 = 13;&lt;br /&gt;
int tilt1 = 4;                 // choose the input pin (for the tilt sensors)&lt;br /&gt;
int tilt2 = 5;&lt;br /&gt;
int val1 = 0;                    // variable for reading the pin status&lt;br /&gt;
int val2 = 0;&lt;br /&gt;
&lt;br /&gt;
void setup() {&lt;br /&gt;
  pinMode(turn1, OUTPUT);      // declare turn pins as output&lt;br /&gt;
  pinMode(turn2, OUTPUT);&lt;br /&gt;
  pinMode(tilt1, INPUT);     // declare tilt sensors as input&lt;br /&gt;
  pinMode(tilt2, INPUT);&lt;br /&gt;
  &lt;br /&gt;
  digitalWrite(0,HIGH);     // write a HIGH to allow for current to flow through pin&lt;br /&gt;
  digitalWrite(1,HIGH);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
void loop(){&lt;br /&gt;
  val1 = digitalRead(tilt1);  // read input value&lt;br /&gt;
  val2 = digitalRead(tilt2);&lt;br /&gt;
  &lt;br /&gt;
  if (val1 == HIGH) {         // if tilted, turn the motor!&lt;br /&gt;
    pinMode(turn1,OUTPUT);    // turn the pins on&lt;br /&gt;
    pinMode(turn2,OUTPUT);    &lt;br /&gt;
    digitalWrite(turn1, LOW);  // turn the motor!&lt;br /&gt;
    digitalWrite(turn2, HIGH);&lt;br /&gt;
  }&lt;br /&gt;
  if (val2 == HIGH) {         // if tilted, turn the motor!&lt;br /&gt;
    pinMode(turn1,OUTPUT);     // turn the pins on&lt;br /&gt;
    pinMode(turn2,OUTPUT);&lt;br /&gt;
    digitalWrite(turn1, HIGH);   // turn the motor the other way!&lt;br /&gt;
    digitalWrite(turn2, LOW);&lt;br /&gt;
  }&lt;br /&gt;
  if(val1 != HIGH &amp;amp;&amp;amp; val2 != HIGH){ // if it&amp;#039;s not tilted either way&lt;br /&gt;
    pinMode(turn1,INPUT);   // turn the output pins &amp;quot;off&amp;quot;&lt;br /&gt;
    pinMode(turn2,INPUT);&lt;br /&gt;
 }&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[User:S8brown/Project | Other Projects]]&lt;/div&gt;</summary>
		<author><name>S8brown</name></author>	</entry>

	<entry>
		<id>http://wiki.roberttwomey.com/index.php?title=File:Photo2.png&amp;diff=994</id>
		<title>File:Photo2.png</title>
		<link rel="alternate" type="text/html" href="http://wiki.roberttwomey.com/index.php?title=File:Photo2.png&amp;diff=994"/>
				<updated>2009-06-12T02:42:35Z</updated>
		
		<summary type="html">&lt;p&gt;S8brown: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>S8brown</name></author>	</entry>

	<entry>
		<id>http://wiki.roberttwomey.com/index.php?title=User:S8brown&amp;diff=993</id>
		<title>User:S8brown</title>
		<link rel="alternate" type="text/html" href="http://wiki.roberttwomey.com/index.php?title=User:S8brown&amp;diff=993"/>
				<updated>2009-06-12T02:41:56Z</updated>
		
		<summary type="html">&lt;p&gt;S8brown: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hi I&amp;#039;m Seth.&lt;br /&gt;
&lt;br /&gt;
For my midterm project, I created a tilt sensing motor.&lt;br /&gt;
I made two tilt sensors out of ball bearings and bic pens and positioned them on either side of the motor at different angles.&lt;br /&gt;
When the motor/device is tilted in one direction, it will spin clockwise, and when tilted the other direction, counter-clockwise.&lt;br /&gt;
As for the aesthetic of the device, it would be fitted to the duty it was designed to perform such as a handle for a fishing pole, etc.&lt;br /&gt;
For testing, I affixed the components to a toilet paper tube with the tilt sensors pointing up a little bit so that they won&amp;#039;t always be triggering.&lt;br /&gt;
&lt;br /&gt;
(I let my friend borrow my Arduino, so there aren&amp;#039;t any pictures of the &amp;quot;device&amp;quot; as a whole, but here are the main components!)&lt;br /&gt;
&lt;br /&gt;
[[Image:Photo.png]]&lt;br /&gt;
&lt;br /&gt;
[[Image:http://i650.photobucket.com/albums/uu221/onebigword/photo2.png]]&lt;br /&gt;
&lt;br /&gt;
And Here&amp;#039;s the code!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
int turn1 = 12;            // choose the pins for controlling direction&lt;br /&gt;
int turn2 = 13;&lt;br /&gt;
int tilt1 = 4;                 // choose the input pin (for the tilt sensors)&lt;br /&gt;
int tilt2 = 5;&lt;br /&gt;
int val1 = 0;                    // variable for reading the pin status&lt;br /&gt;
int val2 = 0;&lt;br /&gt;
&lt;br /&gt;
void setup() {&lt;br /&gt;
  pinMode(turn1, OUTPUT);      // declare turn pins as output&lt;br /&gt;
  pinMode(turn2, OUTPUT);&lt;br /&gt;
  pinMode(tilt1, INPUT);     // declare tilt sensors as input&lt;br /&gt;
  pinMode(tilt2, INPUT);&lt;br /&gt;
  &lt;br /&gt;
  digitalWrite(0,HIGH);     // write a HIGH to allow for current to flow through pin&lt;br /&gt;
  digitalWrite(1,HIGH);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
void loop(){&lt;br /&gt;
  val1 = digitalRead(tilt1);  // read input value&lt;br /&gt;
  val2 = digitalRead(tilt2);&lt;br /&gt;
  &lt;br /&gt;
  if (val1 == HIGH) {         // if tilted, turn the motor!&lt;br /&gt;
    pinMode(turn1,OUTPUT);    // turn the pins on&lt;br /&gt;
    pinMode(turn2,OUTPUT);    &lt;br /&gt;
    digitalWrite(turn1, LOW);  // turn the motor!&lt;br /&gt;
    digitalWrite(turn2, HIGH);&lt;br /&gt;
  }&lt;br /&gt;
  if (val2 == HIGH) {         // if tilted, turn the motor!&lt;br /&gt;
    pinMode(turn1,OUTPUT);     // turn the pins on&lt;br /&gt;
    pinMode(turn2,OUTPUT);&lt;br /&gt;
    digitalWrite(turn1, HIGH);   // turn the motor the other way!&lt;br /&gt;
    digitalWrite(turn2, LOW);&lt;br /&gt;
  }&lt;br /&gt;
  if(val1 != HIGH &amp;amp;&amp;amp; val2 != HIGH){ // if it&amp;#039;s not tilted either way&lt;br /&gt;
    pinMode(turn1,INPUT);   // turn the output pins &amp;quot;off&amp;quot;&lt;br /&gt;
    pinMode(turn2,INPUT);&lt;br /&gt;
 }&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[User:S8brown/Project | Other Projects]]&lt;/div&gt;</summary>
		<author><name>S8brown</name></author>	</entry>

	<entry>
		<id>http://wiki.roberttwomey.com/index.php?title=File:Photo.png&amp;diff=992</id>
		<title>File:Photo.png</title>
		<link rel="alternate" type="text/html" href="http://wiki.roberttwomey.com/index.php?title=File:Photo.png&amp;diff=992"/>
				<updated>2009-06-12T02:40:47Z</updated>
		
		<summary type="html">&lt;p&gt;S8brown: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>S8brown</name></author>	</entry>

	<entry>
		<id>http://wiki.roberttwomey.com/index.php?title=User:S8brown&amp;diff=991</id>
		<title>User:S8brown</title>
		<link rel="alternate" type="text/html" href="http://wiki.roberttwomey.com/index.php?title=User:S8brown&amp;diff=991"/>
				<updated>2009-06-12T02:39:27Z</updated>
		
		<summary type="html">&lt;p&gt;S8brown: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hi I&amp;#039;m Seth.&lt;br /&gt;
&lt;br /&gt;
For my midterm project, I created a tilt sensing motor.&lt;br /&gt;
I made two tilt sensors out of ball bearings and bic pens and positioned them on either side of the motor at different angles.&lt;br /&gt;
When the motor/device is tilted in one direction, it will spin clockwise, and when tilted the other direction, counter-clockwise.&lt;br /&gt;
As for the aesthetic of the device, it would be fitted to the duty it was designed to perform such as a handle for a fishing pole, etc.&lt;br /&gt;
For testing, I affixed the components to a toilet paper tube with the tilt sensors pointing up a little bit so that they won&amp;#039;t always be triggering.&lt;br /&gt;
&lt;br /&gt;
(I let my friend borrow my Arduino, so there aren&amp;#039;t any pictures of the &amp;quot;device&amp;quot; as a whole, but here are the main components!)&lt;br /&gt;
&lt;br /&gt;
[[Image:http://i650.photobucket.com/albums/uu221/onebigword/photo.png]]&lt;br /&gt;
&lt;br /&gt;
[[Image:http://i650.photobucket.com/albums/uu221/onebigword/photo2.png]]&lt;br /&gt;
&lt;br /&gt;
And Here&amp;#039;s the code!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
int turn1 = 12;            // choose the pins for controlling direction&lt;br /&gt;
int turn2 = 13;&lt;br /&gt;
int tilt1 = 4;                 // choose the input pin (for the tilt sensors)&lt;br /&gt;
int tilt2 = 5;&lt;br /&gt;
int val1 = 0;                    // variable for reading the pin status&lt;br /&gt;
int val2 = 0;&lt;br /&gt;
&lt;br /&gt;
void setup() {&lt;br /&gt;
  pinMode(turn1, OUTPUT);      // declare turn pins as output&lt;br /&gt;
  pinMode(turn2, OUTPUT);&lt;br /&gt;
  pinMode(tilt1, INPUT);     // declare tilt sensors as input&lt;br /&gt;
  pinMode(tilt2, INPUT);&lt;br /&gt;
  &lt;br /&gt;
  digitalWrite(0,HIGH);     // write a HIGH to allow for current to flow through pin&lt;br /&gt;
  digitalWrite(1,HIGH);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
void loop(){&lt;br /&gt;
  val1 = digitalRead(tilt1);  // read input value&lt;br /&gt;
  val2 = digitalRead(tilt2);&lt;br /&gt;
  &lt;br /&gt;
  if (val1 == HIGH) {         // if tilted, turn the motor!&lt;br /&gt;
    pinMode(turn1,OUTPUT);    // turn the pins on&lt;br /&gt;
    pinMode(turn2,OUTPUT);    &lt;br /&gt;
    digitalWrite(turn1, LOW);  // turn the motor!&lt;br /&gt;
    digitalWrite(turn2, HIGH);&lt;br /&gt;
  }&lt;br /&gt;
  if (val2 == HIGH) {         // if tilted, turn the motor!&lt;br /&gt;
    pinMode(turn1,OUTPUT);     // turn the pins on&lt;br /&gt;
    pinMode(turn2,OUTPUT);&lt;br /&gt;
    digitalWrite(turn1, HIGH);   // turn the motor the other way!&lt;br /&gt;
    digitalWrite(turn2, LOW);&lt;br /&gt;
  }&lt;br /&gt;
  if(val1 != HIGH &amp;amp;&amp;amp; val2 != HIGH){ // if it&amp;#039;s not tilted either way&lt;br /&gt;
    pinMode(turn1,INPUT);   // turn the output pins &amp;quot;off&amp;quot;&lt;br /&gt;
    pinMode(turn2,INPUT);&lt;br /&gt;
 }&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[User:S8brown/Project | Other Projects]]&lt;/div&gt;</summary>
		<author><name>S8brown</name></author>	</entry>

	<entry>
		<id>http://wiki.roberttwomey.com/index.php?title=User:S8brown&amp;diff=990</id>
		<title>User:S8brown</title>
		<link rel="alternate" type="text/html" href="http://wiki.roberttwomey.com/index.php?title=User:S8brown&amp;diff=990"/>
				<updated>2009-06-12T02:39:07Z</updated>
		
		<summary type="html">&lt;p&gt;S8brown: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hi I&amp;#039;m Seth.&lt;br /&gt;
&lt;br /&gt;
For my midterm project, I created a tilt sensing motor.&lt;br /&gt;
I made two tilt sensors out of ball bearings and bic pens and positioned them on either side of the motor at different angles.&lt;br /&gt;
When the motor/device is tilted in one direction, it will spin clockwise, and when tilted the other direction, counter-clockwise.&lt;br /&gt;
As for the aesthetic of the device, it would be fitted to the duty it was designed to perform such as a handle for a fishing pole, etc.&lt;br /&gt;
For testing, I affixed the components to a toilet paper tube with the tilt sensors pointing up a little bit so that they won&amp;#039;t always be triggering.&lt;br /&gt;
&lt;br /&gt;
(I let my friend borrow my Arduino, so there aren&amp;#039;t any pictures of the &amp;quot;device&amp;quot; as a whole, but here are the main components!)&lt;br /&gt;
&lt;br /&gt;
[[Image:&amp;quot;http://i650.photobucket.com/albums/uu221/onebigword/photo.png&amp;quot;]]&lt;br /&gt;
&lt;br /&gt;
[[Image:&amp;quot;http://i650.photobucket.com/albums/uu221/onebigword/photo2.png&amp;quot;]]&lt;br /&gt;
&lt;br /&gt;
And Here&amp;#039;s the code!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
int turn1 = 12;            // choose the pins for controlling direction&lt;br /&gt;
int turn2 = 13;&lt;br /&gt;
int tilt1 = 4;                 // choose the input pin (for the tilt sensors)&lt;br /&gt;
int tilt2 = 5;&lt;br /&gt;
int val1 = 0;                    // variable for reading the pin status&lt;br /&gt;
int val2 = 0;&lt;br /&gt;
&lt;br /&gt;
void setup() {&lt;br /&gt;
  pinMode(turn1, OUTPUT);      // declare turn pins as output&lt;br /&gt;
  pinMode(turn2, OUTPUT);&lt;br /&gt;
  pinMode(tilt1, INPUT);     // declare tilt sensors as input&lt;br /&gt;
  pinMode(tilt2, INPUT);&lt;br /&gt;
  &lt;br /&gt;
  digitalWrite(0,HIGH);     // write a HIGH to allow for current to flow through pin&lt;br /&gt;
  digitalWrite(1,HIGH);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
void loop(){&lt;br /&gt;
  val1 = digitalRead(tilt1);  // read input value&lt;br /&gt;
  val2 = digitalRead(tilt2);&lt;br /&gt;
  &lt;br /&gt;
  if (val1 == HIGH) {         // if tilted, turn the motor!&lt;br /&gt;
    pinMode(turn1,OUTPUT);    // turn the pins on&lt;br /&gt;
    pinMode(turn2,OUTPUT);    &lt;br /&gt;
    digitalWrite(turn1, LOW);  // turn the motor!&lt;br /&gt;
    digitalWrite(turn2, HIGH);&lt;br /&gt;
  }&lt;br /&gt;
  if (val2 == HIGH) {         // if tilted, turn the motor!&lt;br /&gt;
    pinMode(turn1,OUTPUT);     // turn the pins on&lt;br /&gt;
    pinMode(turn2,OUTPUT);&lt;br /&gt;
    digitalWrite(turn1, HIGH);   // turn the motor the other way!&lt;br /&gt;
    digitalWrite(turn2, LOW);&lt;br /&gt;
  }&lt;br /&gt;
  if(val1 != HIGH &amp;amp;&amp;amp; val2 != HIGH){ // if it&amp;#039;s not tilted either way&lt;br /&gt;
    pinMode(turn1,INPUT);   // turn the output pins &amp;quot;off&amp;quot;&lt;br /&gt;
    pinMode(turn2,INPUT);&lt;br /&gt;
 }&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[User:S8brown/Project | Other Projects]]&lt;/div&gt;</summary>
		<author><name>S8brown</name></author>	</entry>

	<entry>
		<id>http://wiki.roberttwomey.com/index.php?title=User:S8brown&amp;diff=989</id>
		<title>User:S8brown</title>
		<link rel="alternate" type="text/html" href="http://wiki.roberttwomey.com/index.php?title=User:S8brown&amp;diff=989"/>
				<updated>2009-06-12T02:38:45Z</updated>
		
		<summary type="html">&lt;p&gt;S8brown: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hi I&amp;#039;m Seth.&lt;br /&gt;
&lt;br /&gt;
For my midterm project, I created a tilt sensing motor.&lt;br /&gt;
I made two tilt sensors out of ball bearings and bic pens and positioned them on either side of the motor at different angles.&lt;br /&gt;
When the motor/device is tilted in one direction, it will spin clockwise, and when tilted the other direction, counter-clockwise.&lt;br /&gt;
As for the aesthetic of the device, it would be fitted to the duty it was designed to perform such as a handle for a fishing pole, etc.&lt;br /&gt;
For testing, I affixed the components to a toilet paper tube with the tilt sensors pointing up a little bit so that they won&amp;#039;t always be triggering.&lt;br /&gt;
&lt;br /&gt;
(I let my friend borrow my Arduino, so there aren&amp;#039;t any pictures of the &amp;quot;device&amp;quot; as a whole, but here are the main components!)&lt;br /&gt;
&lt;br /&gt;
[[Image:http://i650.photobucket.com/albums/uu221/onebigword/photo.png]]&lt;br /&gt;
[[Image:http://i650.photobucket.com/albums/uu221/onebigword/photo2.png]]&lt;br /&gt;
&lt;br /&gt;
And Here&amp;#039;s the code!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
int turn1 = 12;            // choose the pins for controlling direction&lt;br /&gt;
int turn2 = 13;&lt;br /&gt;
int tilt1 = 4;                 // choose the input pin (for the tilt sensors)&lt;br /&gt;
int tilt2 = 5;&lt;br /&gt;
int val1 = 0;                    // variable for reading the pin status&lt;br /&gt;
int val2 = 0;&lt;br /&gt;
&lt;br /&gt;
void setup() {&lt;br /&gt;
  pinMode(turn1, OUTPUT);      // declare turn pins as output&lt;br /&gt;
  pinMode(turn2, OUTPUT);&lt;br /&gt;
  pinMode(tilt1, INPUT);     // declare tilt sensors as input&lt;br /&gt;
  pinMode(tilt2, INPUT);&lt;br /&gt;
  &lt;br /&gt;
  digitalWrite(0,HIGH);     // write a HIGH to allow for current to flow through pin&lt;br /&gt;
  digitalWrite(1,HIGH);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
void loop(){&lt;br /&gt;
  val1 = digitalRead(tilt1);  // read input value&lt;br /&gt;
  val2 = digitalRead(tilt2);&lt;br /&gt;
  &lt;br /&gt;
  if (val1 == HIGH) {         // if tilted, turn the motor!&lt;br /&gt;
    pinMode(turn1,OUTPUT);    // turn the pins on&lt;br /&gt;
    pinMode(turn2,OUTPUT);    &lt;br /&gt;
    digitalWrite(turn1, LOW);  // turn the motor!&lt;br /&gt;
    digitalWrite(turn2, HIGH);&lt;br /&gt;
  }&lt;br /&gt;
  if (val2 == HIGH) {         // if tilted, turn the motor!&lt;br /&gt;
    pinMode(turn1,OUTPUT);     // turn the pins on&lt;br /&gt;
    pinMode(turn2,OUTPUT);&lt;br /&gt;
    digitalWrite(turn1, HIGH);   // turn the motor the other way!&lt;br /&gt;
    digitalWrite(turn2, LOW);&lt;br /&gt;
  }&lt;br /&gt;
  if(val1 != HIGH &amp;amp;&amp;amp; val2 != HIGH){ // if it&amp;#039;s not tilted either way&lt;br /&gt;
    pinMode(turn1,INPUT);   // turn the output pins &amp;quot;off&amp;quot;&lt;br /&gt;
    pinMode(turn2,INPUT);&lt;br /&gt;
 }&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[User:S8brown/Project | Other Projects]]&lt;/div&gt;</summary>
		<author><name>S8brown</name></author>	</entry>

	<entry>
		<id>http://wiki.roberttwomey.com/index.php?title=User:S8brown/Project&amp;diff=971</id>
		<title>User:S8brown/Project</title>
		<link rel="alternate" type="text/html" href="http://wiki.roberttwomey.com/index.php?title=User:S8brown/Project&amp;diff=971"/>
				<updated>2009-06-02T17:23:27Z</updated>
		
		<summary type="html">&lt;p&gt;S8brown: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;http://blog.makezine.com/archive/2008/03/etchasketch_clock.html?CMP=OTC-0D6B48984890&lt;br /&gt;
&lt;br /&gt;
The project I&amp;#039;m highlighting is the &amp;quot;Etch-A-Sketch Clock&amp;quot; and Arduino/Etch-A-Sketch interfacing in general.&lt;br /&gt;
I&amp;#039;m very interested in the Arduino&amp;#039;s ability to cross over from the virtual to the physical and the Etch-A-Sketch example shows just that.&lt;br /&gt;
Now although I probably won&amp;#039;t be using an Etch-A-Sketch for my project, the use of servo motors seems like something I&amp;#039;d like to incorporate.&lt;br /&gt;
I&amp;#039;ve also looked up a few self-balancing &amp;quot;robots&amp;quot; and those seem to catch my eye, too...&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
And I also came across Festo&amp;#039;s Aqua Penguin...&lt;br /&gt;
&lt;br /&gt;
http://www.youtube.com/watch?v=E8B4_fGopzw&lt;br /&gt;
&lt;br /&gt;
Could this be based off an Arduino-like system?&lt;br /&gt;
Maybe.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[Edit: Since having many failed attempts at the motor control, I have decided to re-route my final.]&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Midterm Project: Final Project Concept&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
A while back I found this toy in a box in my closet:&lt;br /&gt;
&lt;br /&gt;
http://ecx.images-amazon.com/images/I/4190JMDCM1L._SS500_.jpg&lt;br /&gt;
&lt;br /&gt;
If the toy falls over, the user can press a button to lift the toy to be standing again. The arms twist and the toy is corrected by the arms pressing against the ground.&lt;br /&gt;
&lt;br /&gt;
I would like for it to be able to navigate itself through its environment using Ping((( sensors, and auto-correct if it falls over using home made tilt sensors.&lt;br /&gt;
&lt;br /&gt;
For the midterm, I would only expect to be able to make it auto correct via the tilt sensors:&lt;br /&gt;
&lt;br /&gt;
http://i40.tinypic.com/346nsy1.png&lt;br /&gt;
&lt;br /&gt;
Update: I have only been able to get the tilt sensor to work outside of the toy. The complicated circuitry in the toy is making for a very difficult transplant.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Final Project Write Up&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
For my final project, instead of a self-guiding toy, I have decided to create a seven segmented clock display that estimates time.&lt;br /&gt;
It will include the hour through one seven-segment number displays and one two-segment addition (for 10, 11, and 12 o&amp;#039;clock).&lt;br /&gt;
To indicate the minutes the &amp;quot;clock&amp;quot; will display a different color depending on the minutes... (green if closer to :00 and red if close to :59)&lt;br /&gt;
If possible it will include three colors, but we&amp;#039;ll see how the charlieplexing goes.&lt;br /&gt;
[At this point the outputs are all being used, so charlieplexing is my only option for multiple colors.]&lt;br /&gt;
&lt;br /&gt;
http://i41.tinypic.com/5bebkz.png&lt;br /&gt;
&lt;br /&gt;
So far I&amp;#039;ve got the green part working.&lt;br /&gt;
Now for the charlieplexing!&lt;/div&gt;</summary>
		<author><name>S8brown</name></author>	</entry>

	<entry>
		<id>http://wiki.roberttwomey.com/index.php?title=User:S8brown/Project&amp;diff=970</id>
		<title>User:S8brown/Project</title>
		<link rel="alternate" type="text/html" href="http://wiki.roberttwomey.com/index.php?title=User:S8brown/Project&amp;diff=970"/>
				<updated>2009-06-02T17:21:05Z</updated>
		
		<summary type="html">&lt;p&gt;S8brown: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;http://blog.makezine.com/archive/2008/03/etchasketch_clock.html?CMP=OTC-0D6B48984890&lt;br /&gt;
&lt;br /&gt;
The project I&amp;#039;m highlighting is the &amp;quot;Etch-A-Sketch Clock&amp;quot; and Arduino/Etch-A-Sketch interfacing in general.&lt;br /&gt;
I&amp;#039;m very interested in the Arduino&amp;#039;s ability to cross over from the virtual to the physical and the Etch-A-Sketch example shows just that.&lt;br /&gt;
Now although I probably won&amp;#039;t be using an Etch-A-Sketch for my project, the use of servo motors seems like something I&amp;#039;d like to incorporate.&lt;br /&gt;
I&amp;#039;ve also looked up a few self-balancing &amp;quot;robots&amp;quot; and those seem to catch my eye, too...&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
And I also came across Festo&amp;#039;s Aqua Penguin...&lt;br /&gt;
&lt;br /&gt;
http://www.youtube.com/watch?v=E8B4_fGopzw&lt;br /&gt;
&lt;br /&gt;
Could this be based off an Arduino-like system?&lt;br /&gt;
Maybe.&lt;br /&gt;
&lt;br /&gt;
Wait...&lt;br /&gt;
Was the point of this to learn about all the amazing things Arduinos could be set up to do?&lt;br /&gt;
Nooooo...&lt;br /&gt;
Couldn&amp;#039;t be.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[Edit: Since having many failed attempts at the motor control, I have decided to re-route my final.]&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Midterm Project: Final Project Concept&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
A while back I found this toy in a box in my closet:&lt;br /&gt;
&lt;br /&gt;
http://ecx.images-amazon.com/images/I/4190JMDCM1L._SS500_.jpg&lt;br /&gt;
&lt;br /&gt;
If the toy falls over, the user can press a button to lift the toy to be standing again. The arms twist and the toy is corrected by the arms pressing against the ground.&lt;br /&gt;
&lt;br /&gt;
I would like for it to be able to navigate itself through its environment using Ping((( sensors, and auto-correct if it falls over using home made tilt sensors.&lt;br /&gt;
&lt;br /&gt;
For the midterm, I would only expect to be able to make it auto correct via the tilt sensors:&lt;br /&gt;
&lt;br /&gt;
http://i40.tinypic.com/346nsy1.png&lt;br /&gt;
&lt;br /&gt;
Update: I have only been able to get the tilt sensor to work outside of the toy. The complicated circuitry in the toy is making for a very difficult transplant.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Final Project Write Up&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
For my final project, instead of a self-guiding toy, I have decided to create a seven segmented clock display that estimates time.&lt;br /&gt;
It will include the hour through one seven-segment number displays and one two-segment addition (for 10, 11, and 12 o&amp;#039;clock).&lt;br /&gt;
To indicate the minutes the &amp;quot;clock&amp;quot; will display a different color depending on the minutes... (green if closer to :00 and red if close to :59)&lt;br /&gt;
If possible it will include three colors, but we&amp;#039;ll see how the charlieplexing goes.&lt;br /&gt;
&lt;br /&gt;
http://i41.tinypic.com/5bebkz.png&lt;/div&gt;</summary>
		<author><name>S8brown</name></author>	</entry>

	<entry>
		<id>http://wiki.roberttwomey.com/index.php?title=User:S8brown/Project&amp;diff=969</id>
		<title>User:S8brown/Project</title>
		<link rel="alternate" type="text/html" href="http://wiki.roberttwomey.com/index.php?title=User:S8brown/Project&amp;diff=969"/>
				<updated>2009-06-02T17:03:35Z</updated>
		
		<summary type="html">&lt;p&gt;S8brown: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;http://blog.makezine.com/archive/2008/03/etchasketch_clock.html?CMP=OTC-0D6B48984890&lt;br /&gt;
&lt;br /&gt;
The project I&amp;#039;m highlighting is the &amp;quot;Etch-A-Sketch Clock&amp;quot; and Arduino/Etch-A-Sketch interfacing in general.&lt;br /&gt;
I&amp;#039;m very interested in the Arduino&amp;#039;s ability to cross over from the virtual to the physical and the Etch-A-Sketch example shows just that.&lt;br /&gt;
Now although I probably won&amp;#039;t be using an Etch-A-Sketch for my project, the use of servo motors seems like something I&amp;#039;d like to incorporate.&lt;br /&gt;
I&amp;#039;ve also looked up a few self-balancing &amp;quot;robots&amp;quot; and those seem to catch my eye, too...&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
And I also came across Festo&amp;#039;s Aqua Penguin...&lt;br /&gt;
&lt;br /&gt;
http://www.youtube.com/watch?v=E8B4_fGopzw&lt;br /&gt;
&lt;br /&gt;
Could this be based off an Arduino-like system?&lt;br /&gt;
Maybe.&lt;br /&gt;
&lt;br /&gt;
Wait...&lt;br /&gt;
Was the point of this to learn about all the amazing things Arduinos could be set up to do?&lt;br /&gt;
Nooooo...&lt;br /&gt;
Couldn&amp;#039;t be.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[Edit: Since having many failed attempts at the motor control, I have decided to re-route my final.]&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Midterm Project: Final Project Concept&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
A while back I found this toy in a box in my closet:&lt;br /&gt;
&lt;br /&gt;
http://ecx.images-amazon.com/images/I/4190JMDCM1L._SS500_.jpg&lt;br /&gt;
&lt;br /&gt;
If the toy falls over, the user can press a button to lift the toy to be standing again. The arms twist and the toy is corrected by the arms pressing against the ground.&lt;br /&gt;
&lt;br /&gt;
I would like for it to be able to navigate itself through its environment using Ping((( sensors, and auto-correct if it falls over using home made tilt sensors.&lt;br /&gt;
&lt;br /&gt;
For the midterm, I would only expect to be able to make it auto correct via the tilt sensors:&lt;br /&gt;
&lt;br /&gt;
http://i40.tinypic.com/346nsy1.png&lt;br /&gt;
&lt;br /&gt;
Update: I have only been able to get the tilt sensor to work outside of the toy. The complicated circuitry in the toy is making for a very difficult transplant.&lt;/div&gt;</summary>
		<author><name>S8brown</name></author>	</entry>

	<entry>
		<id>http://wiki.roberttwomey.com/index.php?title=User:S8brown/Project&amp;diff=968</id>
		<title>User:S8brown/Project</title>
		<link rel="alternate" type="text/html" href="http://wiki.roberttwomey.com/index.php?title=User:S8brown/Project&amp;diff=968"/>
				<updated>2009-06-02T17:03:18Z</updated>
		
		<summary type="html">&lt;p&gt;S8brown: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;http://blog.makezine.com/archive/2008/03/etchasketch_clock.html?CMP=OTC-0D6B48984890&lt;br /&gt;
&lt;br /&gt;
The project I&amp;#039;m highlighting is the &amp;quot;Etch-A-Sketch Clock&amp;quot; and Arduino/Etch-A-Sketch interfacing in general.&lt;br /&gt;
I&amp;#039;m very interested in the Arduino&amp;#039;s ability to cross over from the virtual to the physical and the Etch-A-Sketch example shows just that.&lt;br /&gt;
Now although I probably won&amp;#039;t be using an Etch-A-Sketch for my project, the use of servo motors seems like something I&amp;#039;d like to incorporate.&lt;br /&gt;
I&amp;#039;ve also looked up a few self-balancing &amp;quot;robots&amp;quot; and those seem to catch my eye, too...&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
And I also came across Festo&amp;#039;s Aqua Penguin...&lt;br /&gt;
&lt;br /&gt;
http://www.youtube.com/watch?v=E8B4_fGopzw&lt;br /&gt;
&lt;br /&gt;
Could this be based off an Arduino-like system?&lt;br /&gt;
Maybe.&lt;br /&gt;
&lt;br /&gt;
Wait...&lt;br /&gt;
Was the point of this to learn about all the amazing things Arduinos could be set up to do?&lt;br /&gt;
Nooooo...&lt;br /&gt;
Couldn&amp;#039;t be.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
[Edit: Since having many failed attempts at the motor control, I have decided to re-route my final.]&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Midterm Project: Final Project Concept&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
A while back I found this toy in a box in my closet:&lt;br /&gt;
&lt;br /&gt;
http://ecx.images-amazon.com/images/I/4190JMDCM1L._SS500_.jpg&lt;br /&gt;
&lt;br /&gt;
If the toy falls over, the user can press a button to lift the toy to be standing again. The arms twist and the toy is corrected by the arms pressing against the ground.&lt;br /&gt;
&lt;br /&gt;
I would like for it to be able to navigate itself through its environment using Ping((( sensors, and auto-correct if it falls over using home made tilt sensors.&lt;br /&gt;
&lt;br /&gt;
For the midterm, I would only expect to be able to make it auto correct via the tilt sensors:&lt;br /&gt;
&lt;br /&gt;
http://i40.tinypic.com/346nsy1.png&lt;br /&gt;
&lt;br /&gt;
Update: I have only been able to get the tilt sensor to work outside of the toy. The complicated circuitry in the toy is making for a very difficult transplant.&lt;/div&gt;</summary>
		<author><name>S8brown</name></author>	</entry>

	<entry>
		<id>http://wiki.roberttwomey.com/index.php?title=User_talk:S8brown/Project&amp;diff=967</id>
		<title>User talk:S8brown/Project</title>
		<link rel="alternate" type="text/html" href="http://wiki.roberttwomey.com/index.php?title=User_talk:S8brown/Project&amp;diff=967"/>
				<updated>2009-06-02T17:01:55Z</updated>
		
		<summary type="html">&lt;p&gt;S8brown: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[Edit: Since having many failed attempts at the motor control, I have decided to re-route my final.]&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Midterm Project: Final Project Concept&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
A while back I found this toy in a box in my closet:&lt;br /&gt;
&lt;br /&gt;
http://ecx.images-amazon.com/images/I/4190JMDCM1L._SS500_.jpg&lt;br /&gt;
&lt;br /&gt;
If the toy falls over, the user can press a button to lift the toy to be standing again.&lt;br /&gt;
The arms twist and the toy is corrected by the arms pressing against the ground.&lt;br /&gt;
&lt;br /&gt;
I would like for it to be able to navigate itself through its environment using Ping((( sensors,&lt;br /&gt;
and auto-correct if it falls over using home made tilt sensors.&lt;br /&gt;
&lt;br /&gt;
For the midterm, I would only expect to be able to make it auto correct via the tilt sensors:&lt;br /&gt;
&lt;br /&gt;
http://i40.tinypic.com/346nsy1.png&lt;br /&gt;
&lt;br /&gt;
Update: I have only been able to get the tilt sensor to work outside of the toy. The complicated circuitry in the toy is making for a very difficult transplant.&lt;/div&gt;</summary>
		<author><name>S8brown</name></author>	</entry>

	<entry>
		<id>http://wiki.roberttwomey.com/index.php?title=User_talk:S8brown/Project&amp;diff=966</id>
		<title>User talk:S8brown/Project</title>
		<link rel="alternate" type="text/html" href="http://wiki.roberttwomey.com/index.php?title=User_talk:S8brown/Project&amp;diff=966"/>
				<updated>2009-06-02T16:42:24Z</updated>
		
		<summary type="html">&lt;p&gt;S8brown: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[Edit: Since having many failed attempts at the motor control, I have decided to re-route my final.]&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Midterm Project: Final Project Concept&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
A while back I found this toy in a box in my closet:&lt;br /&gt;
&lt;br /&gt;
http://ecx.images-amazon.com/images/I/4190JMDCM1L._SS500_.jpg&lt;br /&gt;
&lt;br /&gt;
If the toy falls over, the user can press a button to lift the toy to be standing again.&lt;br /&gt;
The arms twist and the toy is corrected by the arms pressing against the ground.&lt;br /&gt;
&lt;br /&gt;
I would like for it to be able to navigate itself through its environment using Ping((( sensors,&lt;br /&gt;
and auto-correct if it falls over using home made tilt sensors.&lt;/div&gt;</summary>
		<author><name>S8brown</name></author>	</entry>

	<entry>
		<id>http://wiki.roberttwomey.com/index.php?title=User_talk:S8brown/Project&amp;diff=965</id>
		<title>User talk:S8brown/Project</title>
		<link rel="alternate" type="text/html" href="http://wiki.roberttwomey.com/index.php?title=User_talk:S8brown/Project&amp;diff=965"/>
				<updated>2009-06-02T16:42:14Z</updated>
		
		<summary type="html">&lt;p&gt;S8brown: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[Edit: Since having many failed attempts at the motor control, I have decided to re-route my final.]&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Midterm Project: Final Project Concept&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
A while back I found this toy in a box in my closet:&lt;br /&gt;
&lt;br /&gt;
[IMG=http://ecx.images-amazon.com/images/I/4190JMDCM1L._SS500_.jpg]&lt;br /&gt;
&lt;br /&gt;
If the toy falls over, the user can press a button to lift the toy to be standing again.&lt;br /&gt;
The arms twist and the toy is corrected by the arms pressing against the ground.&lt;br /&gt;
&lt;br /&gt;
I would like for it to be able to navigate itself through its environment using Ping((( sensors,&lt;br /&gt;
and auto-correct if it falls over using home made tilt sensors.&lt;/div&gt;</summary>
		<author><name>S8brown</name></author>	</entry>

	<entry>
		<id>http://wiki.roberttwomey.com/index.php?title=User_talk:S8brown/Project&amp;diff=964</id>
		<title>User talk:S8brown/Project</title>
		<link rel="alternate" type="text/html" href="http://wiki.roberttwomey.com/index.php?title=User_talk:S8brown/Project&amp;diff=964"/>
				<updated>2009-06-02T16:42:01Z</updated>
		
		<summary type="html">&lt;p&gt;S8brown: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[Edit: Since having many failed attempts at the motor control, I have decided to re-route my final.]&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Midterm Project: Final Project Concept&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
A while back I found this toy in a box in my closet:&lt;br /&gt;
&lt;br /&gt;
[[IMG=http://ecx.images-amazon.com/images/I/4190JMDCM1L._SS500_.jpg]]&lt;br /&gt;
&lt;br /&gt;
If the toy falls over, the user can press a button to lift the toy to be standing again.&lt;br /&gt;
The arms twist and the toy is corrected by the arms pressing against the ground.&lt;br /&gt;
&lt;br /&gt;
I would like for it to be able to navigate itself through its environment using Ping((( sensors,&lt;br /&gt;
and auto-correct if it falls over using home made tilt sensors.&lt;/div&gt;</summary>
		<author><name>S8brown</name></author>	</entry>

	<entry>
		<id>http://wiki.roberttwomey.com/index.php?title=User_talk:S8brown/Project&amp;diff=963</id>
		<title>User talk:S8brown/Project</title>
		<link rel="alternate" type="text/html" href="http://wiki.roberttwomey.com/index.php?title=User_talk:S8brown/Project&amp;diff=963"/>
				<updated>2009-06-02T16:41:40Z</updated>
		
		<summary type="html">&lt;p&gt;S8brown: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[Edit: Since having many failed attempts at the motor control, I have decided to re-route my final.]&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Midterm Project: Final Project Concept&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
A while back I found this toy in a box in my closet:&lt;br /&gt;
&lt;br /&gt;
[IMG=http://ecx.images-amazon.com/images/I/4190JMDCM1L._SS500_.jpg]&lt;br /&gt;
&lt;br /&gt;
If the toy falls over, the user can press a button to lift the toy to be standing again.&lt;br /&gt;
The arms twist and the toy is corrected by the arms pressing against the ground.&lt;br /&gt;
&lt;br /&gt;
I would like for it to be able to navigate itself through its environment using Ping((( sensors,&lt;br /&gt;
and auto-correct if it falls over using home made tilt sensors.&lt;/div&gt;</summary>
		<author><name>S8brown</name></author>	</entry>

	<entry>
		<id>http://wiki.roberttwomey.com/index.php?title=User_talk:S8brown/Project&amp;diff=962</id>
		<title>User talk:S8brown/Project</title>
		<link rel="alternate" type="text/html" href="http://wiki.roberttwomey.com/index.php?title=User_talk:S8brown/Project&amp;diff=962"/>
				<updated>2009-06-02T16:41:18Z</updated>
		
		<summary type="html">&lt;p&gt;S8brown: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[Edit: Since having many failed attempts at the motor control, I have decided to re-route my final.]&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
Midterm Project: Final Project Concept&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
A while back I found this toy in a box in my closet:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;img src=&amp;quot;http://ecx.images-amazon.com/images/I/4190JMDCM1L._SS500_.jpg&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If the toy falls over, the user can press a button to lift the toy to be standing again.&lt;br /&gt;
The arms twist and the toy is corrected by the arms pressing against the ground.&lt;br /&gt;
&lt;br /&gt;
I would like for it to be able to navigate itself through its environment using Ping((( sensors,&lt;br /&gt;
and auto-correct if it falls over using home made tilt sensors.&lt;/div&gt;</summary>
		<author><name>S8brown</name></author>	</entry>

	<entry>
		<id>http://wiki.roberttwomey.com/index.php?title=User_talk:S8brown/Project&amp;diff=961</id>
		<title>User talk:S8brown/Project</title>
		<link rel="alternate" type="text/html" href="http://wiki.roberttwomey.com/index.php?title=User_talk:S8brown/Project&amp;diff=961"/>
				<updated>2009-06-02T16:40:59Z</updated>
		
		<summary type="html">&lt;p&gt;S8brown: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[Edit: Since having many failed attempts at the motor control, I have decided to re-route my final.]&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
Midterm Project: Final Project Concept&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
A while back I found this toy in a box in my closet:&lt;br /&gt;
&lt;br /&gt;
[Image:http://ecx.images-amazon.com/images/I/4190JMDCM1L._SS500_.jpg]&lt;br /&gt;
&lt;br /&gt;
If the toy falls over, the user can press a button to lift the toy to be standing again.&lt;br /&gt;
The arms twist and the toy is corrected by the arms pressing against the ground.&lt;br /&gt;
&lt;br /&gt;
I would like for it to be able to navigate itself through its environment using Ping((( sensors,&lt;br /&gt;
and auto-correct if it falls over using home made tilt sensors.&lt;/div&gt;</summary>
		<author><name>S8brown</name></author>	</entry>

	<entry>
		<id>http://wiki.roberttwomey.com/index.php?title=User_talk:S8brown/Project&amp;diff=960</id>
		<title>User talk:S8brown/Project</title>
		<link rel="alternate" type="text/html" href="http://wiki.roberttwomey.com/index.php?title=User_talk:S8brown/Project&amp;diff=960"/>
				<updated>2009-06-02T16:40:45Z</updated>
		
		<summary type="html">&lt;p&gt;S8brown: New page: [Edit: Since having many failed attempts at the motor control, I have decided to re-route my final.] &amp;#039;&amp;#039;&amp;#039; Midterm Project: Final Project Concept&amp;#039;&amp;#039;&amp;#039;  A while back I found this toy in a box i...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[Edit: Since having many failed attempts at the motor control, I have decided to re-route my final.]&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
Midterm Project: Final Project Concept&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
A while back I found this toy in a box in my closet:&lt;br /&gt;
&lt;br /&gt;
[[Image:http://ecx.images-amazon.com/images/I/4190JMDCM1L._SS500_.jpg]]&lt;br /&gt;
&lt;br /&gt;
If the toy falls over, the user can press a button to lift the toy to be standing again.&lt;br /&gt;
The arms twist and the toy is corrected by the arms pressing against the ground.&lt;br /&gt;
&lt;br /&gt;
I would like for it to be able to navigate itself through its environment using Ping((( sensors,&lt;br /&gt;
and auto-correct if it falls over using home made tilt sensors.&lt;/div&gt;</summary>
		<author><name>S8brown</name></author>	</entry>

	<entry>
		<id>http://wiki.roberttwomey.com/index.php?title=Classes/2009/VIS147B&amp;diff=780</id>
		<title>Classes/2009/VIS147B</title>
		<link rel="alternate" type="text/html" href="http://wiki.roberttwomey.com/index.php?title=Classes/2009/VIS147B&amp;diff=780"/>
				<updated>2009-05-05T16:51:29Z</updated>
		
		<summary type="html">&lt;p&gt;S8brown: /* Students Pages */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Spring 2009 - Vis 147B&lt;br /&gt;
&lt;br /&gt;
Robert Twomey&lt;br /&gt;
&lt;br /&gt;
rtwomey@ucsd.edu&lt;br /&gt;
&lt;br /&gt;
My work: http://roberttwomey.com&lt;br /&gt;
&lt;br /&gt;
I also work at the Experimental Game Lab &lt;br /&gt;
(http://www.experimentalgamelab.net/)&lt;br /&gt;
&lt;br /&gt;
Office Hours: Thursdays 4-5pm, electronics lab (VAF 106)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Chris Head&lt;br /&gt;
&lt;br /&gt;
[http://gubbish.org gubbish.org]&lt;br /&gt;
&lt;br /&gt;
chead@ucsd.edu&lt;br /&gt;
&lt;br /&gt;
Office Hours: Email! Atkinson Hall 2503&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
[[Image:freeduino.jpg]] [[Image:Fk_schematic2 L.jpg|400px|thumb]]&lt;br /&gt;
[http://www.atmel.com/dyn/resources/prod_documents/doc8025.pdf datasheet (400+ pages)]&lt;br /&gt;
&lt;br /&gt;
USB powered microprocessor&lt;br /&gt;
&lt;br /&gt;
== Quick Links ==&lt;br /&gt;
&lt;br /&gt;
* Interfacing to hardware http://www.arduino.cc/playground/&lt;br /&gt;
&lt;br /&gt;
== Curriculum ==&lt;br /&gt;
&lt;br /&gt;
=== Week 1 - Intro/Assembly===&lt;br /&gt;
&lt;br /&gt;
* Introduction&lt;br /&gt;
* Assemble your Freeduino: &lt;br /&gt;
** INSTRUCTIONS: http://mcukits.com/2009/03/12/assembling-the-freeduino-board-kit/&lt;br /&gt;
** verify values of resistors and capacitors (see charts in Practical Electronics for Inventors)&lt;br /&gt;
** check polarity (+/-) on capacitors, LEDs&lt;br /&gt;
** care with soldering&lt;br /&gt;
* Download and install Arduino 0015 software: http://www.arduino.cc/en/Main/Software&lt;br /&gt;
* Assignment: Assembled, functioning Freeduino, communicating with computer, able to upload test sketches, before next class.&lt;br /&gt;
* NOTE: We have a newer, beefier processor than the original Arduino.  You need to tell the Arduino software this. &lt;br /&gt;
** (if you had problems uploading, this may have been why)&lt;br /&gt;
**In the Arduino software, under Tools-&amp;gt;Board, select the Duemilanove w/ Atmega 328.&lt;br /&gt;
&lt;br /&gt;
===  Week 2 - Digital input/output ===&lt;br /&gt;
Week 2 Lab: [[basic_digital]]&lt;br /&gt;
&lt;br /&gt;
* USES OF THE ARDUINO ON THE WEB:&lt;br /&gt;
** to make a 3d scanner http://hackedgadgets.com/2009/04/02/3d-arduino-scanner/&lt;br /&gt;
** with 2 servos (to be demonstrated), and an IR range-finder: http://www.acroname.com/robotics/parts/R144-GP2Y0A02YK.html&lt;br /&gt;
* Have you seen anything you like?&lt;br /&gt;
&lt;br /&gt;
=== Week 3 - PWM, Analog Input/Output ===&lt;br /&gt;
* lights, fading&lt;br /&gt;
* sounds, tone generation&lt;br /&gt;
* Basic motor control (DC motors) see week 5&lt;br /&gt;
[[Week 3 Lab]]&lt;br /&gt;
&lt;br /&gt;
=== Week 4 - Interfacing ===&lt;br /&gt;
* Serial Interface&lt;br /&gt;
* Processing, MaxMSP, and many more.&lt;br /&gt;
* Computer -&amp;gt; Arduino&lt;br /&gt;
* Arduino -&amp;gt; Computer&lt;br /&gt;
[[Week 4 Lab]]&lt;br /&gt;
&lt;br /&gt;
=== Week 5 - Catchup / Oscilloscope / Your own projects ===&lt;br /&gt;
* Discuss homework. &lt;br /&gt;
* The Oscilloscope (Ah-ha!)&lt;br /&gt;
* Wikis (take it away Chris) &lt;br /&gt;
* HOMEWORK: Look on-line to find an interesting project someone has made with an Arduino.  Register for this Wiki (instructions below), and post a link to the project you found, along with a short paragraph describing your interest in the project. PLEASE WRITE A PARAGRAPH describing your interest in the project, what aspects are relevant to your own possible final project, etc.  &lt;br /&gt;
&lt;br /&gt;
Places to look for projects:&lt;br /&gt;
* http://www.instructables.com/ &lt;br /&gt;
* http://makezine.com/ &lt;br /&gt;
* http://turbulence.org/ &lt;br /&gt;
* http://www.we-make-money-not-art.com/&lt;br /&gt;
* http://www.rhizome.org/&lt;br /&gt;
* all of the NYU Interactive Telecommunications Program (ITP) yearly shows...&lt;br /&gt;
** http://itp.nyu.edu/shows/spring2009/&lt;br /&gt;
&lt;br /&gt;
=== Week 6 - Advanced Motor Controll ===&lt;br /&gt;
* Demos of high-voltage and advanced motor control&lt;br /&gt;
* Discussion of pre-final project (your homework for the next two weeks)&lt;br /&gt;
[[Week 6 Lab]]&lt;br /&gt;
&lt;br /&gt;
=== Week X - Enclosures, Linkages, Framing ===&lt;br /&gt;
* Made in a dorm room...&lt;br /&gt;
* Made in a machine shop...&lt;br /&gt;
* Made in an art studio&lt;br /&gt;
** Tim Hawkinson&lt;br /&gt;
* Where are you?&lt;br /&gt;
* Context&lt;br /&gt;
* LCD&lt;br /&gt;
** http://www.arduino.cc/playground/Code/ID12&lt;br /&gt;
* Input devices&lt;br /&gt;
** large foam dance pads (3x3&amp;#039;) approx $10 at frys. http://shop4.frys.com/search?search_type=regular&amp;amp;sqxts=1&amp;amp;query_string=dance+pad&amp;amp;cat=0&amp;amp;submit.x=0&amp;amp;submit.y=0&lt;br /&gt;
&lt;br /&gt;
=== Week Y - Advanced Interfaces ===&lt;br /&gt;
* Arduino on the ethernet&lt;br /&gt;
** http://arduino.cc/en/Guide/ArduinoEthernetShield&lt;br /&gt;
* Bluetooth&lt;br /&gt;
** http://www.sparkfun.com/commerce/product_info.php?products_id=158&lt;br /&gt;
* LCDs&lt;br /&gt;
** http://www.arduino.cc/playground/Code/LCD&lt;br /&gt;
&lt;br /&gt;
=== Week Z - Designing and Etching your own PCBs ===&lt;br /&gt;
* Eagle CAD&lt;br /&gt;
* Print-n-peel&lt;br /&gt;
* Radioshack brand copper board etchant.&lt;br /&gt;
&lt;br /&gt;
=== Week 7-10 TBD, Towards Final Projects ===&lt;br /&gt;
* Designing a circuit in Eagle CAD&lt;br /&gt;
* Etching your own PCB&lt;br /&gt;
* Advanced interfaces: Zigbee, Bluetooth, Ethernet. &lt;br /&gt;
&lt;br /&gt;
=== No Final Project! ===&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Grading == &lt;br /&gt;
* 60% Final Project&lt;br /&gt;
** Proposal&lt;br /&gt;
** Fabrication&lt;br /&gt;
** Documentation&lt;br /&gt;
* 10 % Attendance&lt;br /&gt;
* 30 % Assignments (weekly)&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
* Good classes at the NYU Interactive Telecommunications Program (ITP):  ITP Physical Computing&lt;br /&gt;
** http://itp.nyu.edu/physcomp/Tutorials/Tutorials&lt;br /&gt;
** http://itp.nyu.edu/physcomp/Parts/ComputerStoreKits&lt;br /&gt;
** http://itp.nyu.edu/physcomp/Intro/HomePage&lt;br /&gt;
&lt;br /&gt;
== Hardware ==&lt;br /&gt;
=== Resources ===&lt;br /&gt;
Playground&lt;br /&gt;
[http://www.arduino.cc/playground/ http://www.arduino.cc/playground/]&lt;br /&gt;
&lt;br /&gt;
Interfacing with hardware:&lt;br /&gt;
http://www.arduino.cc/playground/Main/InterfacingWithHardware&lt;br /&gt;
&lt;br /&gt;
Forums:&lt;br /&gt;
http://www.arduino.cc/cgi-bin/yabb2/YaBB.pl&lt;br /&gt;
&lt;br /&gt;
=== Main Board ===&lt;br /&gt;
&lt;br /&gt;
Many different options.  All share a common programming environment, common code, and a similar physical layout.   The board we are using does not require an external USB adaptor, which means all we need to do to program (and power) it is to plug it into the computer with a USB cable. &lt;br /&gt;
&lt;br /&gt;
Here are some of the variants:&lt;br /&gt;
&lt;br /&gt;
*Arduino&lt;br /&gt;
** Arduino Duemilanove http://moderndevice.com/diecimila.shtml&lt;br /&gt;
* Freeduinos&lt;br /&gt;
** http://www.freeduino.org/buy.html&lt;br /&gt;
** http://www.hvwtech.com/products_view.asp?ProductID=682&lt;br /&gt;
** http://www.nkcelectronics.com/freeduino-arduino-diecimila-compatible-board-complete-kit.html&lt;br /&gt;
**http://mcukits.com/2009/03/12/assembling-the-freeduino-board-kit/&lt;br /&gt;
* Bare Bones Freeduinos&lt;br /&gt;
** Bare Bones Board http://moderndevice.com/index.shtml&lt;br /&gt;
** Readlly Bare Bones Board http://moderndevice.com/RBBB_revB.shtml&lt;br /&gt;
** require external USB adapter&lt;br /&gt;
* Off-board Serial&lt;br /&gt;
** FTDI breakout board (with DTR reset) http://www.sparkfun.com/commerce/product_info.php?products_id=8772&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
[[User:Chead/Project Example | How to create a project page]]&lt;br /&gt;
&lt;br /&gt;
== Students Pages ==&lt;br /&gt;
&lt;br /&gt;
[[Robert&amp;#039;s page]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
[[User:Chead/final_project | Chris&amp;#039;s final project template]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
[[Micha&amp;#039;s page]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
[[User:Mchoy | Mchoy&amp;#039;s page]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
[[User: Bdiotte | Braden&amp;#039;s page]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
[[User: Bumblebeezz89 | Stephanie&amp;#039;s page]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
[[User:Johnleeim | John&amp;#039;s page]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
[[User:Jane| Jane&amp;#039;s page]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
[[User:Shani| Shani&amp;#039;s Page]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
[[User:Ben| Ben&amp;#039;s Page]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[User:Ginge| Ginge&amp;#039;s Page]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
[[User:Cecilyrk| Cecily&amp;#039;s Page]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
[[User:CassandraMartell| Cassandra Martell&amp;#039;s page]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr /&amp;gt;&lt;br /&gt;
[[User:Dmtdreamer| Patrick&amp;#039;s Page]]&lt;br /&gt;
&amp;lt;hr /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[User:Sirena| Sirena&amp;#039;s Page]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
[[User:Fabiola| fabiola&amp;#039;s page]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
[[User:Xl68| Sean&amp;#039;s page]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[User:Go2sk| sukyeong&amp;#039;s page]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
[[User:S8brown| Seth&amp;#039;s page]]&lt;/div&gt;</summary>
		<author><name>S8brown</name></author>	</entry>

	<entry>
		<id>http://wiki.roberttwomey.com/index.php?title=User:S8brown/Project&amp;diff=778</id>
		<title>User:S8brown/Project</title>
		<link rel="alternate" type="text/html" href="http://wiki.roberttwomey.com/index.php?title=User:S8brown/Project&amp;diff=778"/>
				<updated>2009-05-05T16:42:32Z</updated>
		
		<summary type="html">&lt;p&gt;S8brown: New page: http://blog.makezine.com/archive/2008/03/etchasketch_clock.html?CMP=OTC-0D6B48984890  The project I&amp;#039;m highlighting is the &amp;quot;Etch-A-Sketch Clock&amp;quot; and Arduino/Etch-A-Sketch interfacing in gen...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;http://blog.makezine.com/archive/2008/03/etchasketch_clock.html?CMP=OTC-0D6B48984890&lt;br /&gt;
&lt;br /&gt;
The project I&amp;#039;m highlighting is the &amp;quot;Etch-A-Sketch Clock&amp;quot; and Arduino/Etch-A-Sketch interfacing in general.&lt;br /&gt;
I&amp;#039;m very interested in the Arduino&amp;#039;s ability to cross over from the virtual to the physical and the Etch-A-Sketch example shows just that.&lt;br /&gt;
Now although I probably won&amp;#039;t be using an Etch-A-Sketch for my project, the use of servo motors seems like something I&amp;#039;d like to incorporate.&lt;br /&gt;
I&amp;#039;ve also looked up a few self-balancing &amp;quot;robots&amp;quot; and those seem to catch my eye, too...&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
And I also came across Festo&amp;#039;s Aqua Penguin...&lt;br /&gt;
&lt;br /&gt;
http://www.youtube.com/watch?v=E8B4_fGopzw&lt;br /&gt;
&lt;br /&gt;
Could this be based off an Arduino-like system?&lt;br /&gt;
Maybe.&lt;br /&gt;
&lt;br /&gt;
Wait...&lt;br /&gt;
Was the point of this to learn about all the amazing things Arduinos could be set up to do?&lt;br /&gt;
Nooooo...&lt;br /&gt;
Couldn&amp;#039;t be.&lt;/div&gt;</summary>
		<author><name>S8brown</name></author>	</entry>

	<entry>
		<id>http://wiki.roberttwomey.com/index.php?title=User:S8brown&amp;diff=777</id>
		<title>User:S8brown</title>
		<link rel="alternate" type="text/html" href="http://wiki.roberttwomey.com/index.php?title=User:S8brown&amp;diff=777"/>
				<updated>2009-05-05T16:42:27Z</updated>
		
		<summary type="html">&lt;p&gt;S8brown: Replacing page with &amp;#039;Hi I&amp;#039;m Seth.

 Project&amp;#039;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hi I&amp;#039;m Seth.&lt;br /&gt;
&lt;br /&gt;
[[User:S8brown/Project | Project]]&lt;/div&gt;</summary>
		<author><name>S8brown</name></author>	</entry>

	<entry>
		<id>http://wiki.roberttwomey.com/index.php?title=User:S8brown&amp;diff=776</id>
		<title>User:S8brown</title>
		<link rel="alternate" type="text/html" href="http://wiki.roberttwomey.com/index.php?title=User:S8brown&amp;diff=776"/>
				<updated>2009-05-05T16:42:08Z</updated>
		
		<summary type="html">&lt;p&gt;S8brown: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;http://blog.makezine.com/archive/2008/03/etchasketch_clock.html?CMP=OTC-0D6B48984890&lt;br /&gt;
&lt;br /&gt;
The project I&amp;#039;m highlighting is the &amp;quot;Etch-A-Sketch Clock&amp;quot; and Arduino/Etch-A-Sketch interfacing in general.&lt;br /&gt;
I&amp;#039;m very interested in the Arduino&amp;#039;s ability to cross over from the virtual to the physical and the Etch-A-Sketch example shows just that.&lt;br /&gt;
Now although I probably won&amp;#039;t be using an Etch-A-Sketch for my project, the use of servo motors seems like something I&amp;#039;d like to incorporate.&lt;br /&gt;
I&amp;#039;ve also looked up a few self-balancing &amp;quot;robots&amp;quot; and those seem to catch my eye, too...&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
And I also came across Festo&amp;#039;s Aqua Penguin...&lt;br /&gt;
&lt;br /&gt;
http://www.youtube.com/watch?v=E8B4_fGopzw&lt;br /&gt;
&lt;br /&gt;
Could this be based off an Arduino-like system?&lt;br /&gt;
Maybe.&lt;br /&gt;
&lt;br /&gt;
Wait...&lt;br /&gt;
Was the point of this to learn about all the amazing things Arduinos could be set up to do?&lt;br /&gt;
Nooooo...&lt;br /&gt;
Couldn&amp;#039;t be.&lt;br /&gt;
&lt;br /&gt;
[[User:S8brown/Project | Project]]&lt;/div&gt;</summary>
		<author><name>S8brown</name></author>	</entry>

	<entry>
		<id>http://wiki.roberttwomey.com/index.php?title=User:S8brown&amp;diff=705</id>
		<title>User:S8brown</title>
		<link rel="alternate" type="text/html" href="http://wiki.roberttwomey.com/index.php?title=User:S8brown&amp;diff=705"/>
				<updated>2009-05-05T06:54:02Z</updated>
		
		<summary type="html">&lt;p&gt;S8brown: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;http://blog.makezine.com/archive/2008/03/etchasketch_clock.html?CMP=OTC-0D6B48984890&lt;br /&gt;
&lt;br /&gt;
The project I&amp;#039;m highlighting is the &amp;quot;Etch-A-Sketch Clock&amp;quot; and Arduino/Etch-A-Sketch interfacing in general.&lt;br /&gt;
I&amp;#039;m very interested in the Arduino&amp;#039;s ability to cross over from the virtual to the physical and the Etch-A-Sketch example shows just that.&lt;br /&gt;
Now although I probably won&amp;#039;t be using an Etch-A-Sketch for my project, the use of servo motors seems like something I&amp;#039;d like to incorporate.&lt;br /&gt;
I&amp;#039;ve also looked up a few self-balancing &amp;quot;robots&amp;quot; and those seem to catch my eye, too...&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
And I also came across Festo&amp;#039;s Aqua Penguin...&lt;br /&gt;
&lt;br /&gt;
http://www.youtube.com/watch?v=E8B4_fGopzw&lt;br /&gt;
&lt;br /&gt;
Could this be based off an Arduino-like system?&lt;br /&gt;
Maybe.&lt;br /&gt;
&lt;br /&gt;
Wait...&lt;br /&gt;
Was the point of this to learn about all the amazing things Arduinos could be set up to do?&lt;br /&gt;
Nooooo...&lt;br /&gt;
Couldn&amp;#039;t be.&lt;/div&gt;</summary>
		<author><name>S8brown</name></author>	</entry>

	<entry>
		<id>http://wiki.roberttwomey.com/index.php?title=User:S8brown&amp;diff=704</id>
		<title>User:S8brown</title>
		<link rel="alternate" type="text/html" href="http://wiki.roberttwomey.com/index.php?title=User:S8brown&amp;diff=704"/>
				<updated>2009-05-05T06:53:15Z</updated>
		
		<summary type="html">&lt;p&gt;S8brown: New page: http://blog.makezine.com/archive/2008/03/etchasketch_clock.html?CMP=OTC-0D6B48984890  Image:http://blog.makezine.com/_blog_archive_etch1.jpg  The project I&amp;#039;m highlighting is the &amp;quot;Etch-...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;http://blog.makezine.com/archive/2008/03/etchasketch_clock.html?CMP=OTC-0D6B48984890&lt;br /&gt;
&lt;br /&gt;
[[Image:http://blog.makezine.com/_blog_archive_etch1.jpg]]&lt;br /&gt;
&lt;br /&gt;
The project I&amp;#039;m highlighting is the &amp;quot;Etch-A-Sketch Clock&amp;quot; and Arduino/Etch-A-Sketch interfacing in general.&lt;br /&gt;
I&amp;#039;m very interested in the Arduino&amp;#039;s ability to cross over from the virtual to the physical and the Etch-A-Sketch example shows just that.&lt;br /&gt;
Now although I probably won&amp;#039;t be using an Etch-A-Sketch for my project, the use of servo motors seems like something I&amp;#039;d like to incorporate.&lt;br /&gt;
I&amp;#039;ve also looked up a few self-balancing &amp;quot;robots&amp;quot; and those seem to catch my eye, too...&lt;br /&gt;
&lt;br /&gt;
And I also came across Festo&amp;#039;s Aqua Penguin...&lt;br /&gt;
&lt;br /&gt;
http://www.youtube.com/watch?v=E8B4_fGopzw&lt;br /&gt;
&lt;br /&gt;
Could this be based off an Arduino-like system?&lt;br /&gt;
Maybe.&lt;br /&gt;
&lt;br /&gt;
Wait...&lt;br /&gt;
Was the point of this to learn about all the amazing things Arduinos could be set up to do?&lt;br /&gt;
Nooooo...&lt;br /&gt;
Couldn&amp;#039;t be.&lt;/div&gt;</summary>
		<author><name>S8brown</name></author>	</entry>

	</feed>