<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://hades.mech.northwestern.edu//api.php?action=feedcontributions&amp;feedformat=atom&amp;user=JaneMiller</id>
	<title>Mech - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://hades.mech.northwestern.edu//api.php?action=feedcontributions&amp;feedformat=atom&amp;user=JaneMiller"/>
	<link rel="alternate" type="text/html" href="https://hades.mech.northwestern.edu//index.php/Special:Contributions/JaneMiller"/>
	<updated>2026-05-13T15:58:17Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.8</generator>
	<entry>
		<id>https://hades.mech.northwestern.edu//index.php?title=Force-Sensing_Resistor&amp;diff=23206</id>
		<title>Force-Sensing Resistor</title>
		<link rel="alternate" type="text/html" href="https://hades.mech.northwestern.edu//index.php?title=Force-Sensing_Resistor&amp;diff=23206"/>
		<updated>2015-03-28T01:22:58Z</updated>

		<summary type="html">&lt;p&gt;JaneMiller: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Force Sensing Resistor ==&lt;br /&gt;
&lt;br /&gt;
*[http://bildr.org/2012/11/force-sensitive-resistor-arduino/ This tutorial from Bildr] has a great overview of what a force sensitive resistor is and how to use it. &lt;br /&gt;
*Like the analog distance sensor, we can stream the values of this sensor over serial and use Arduino&#039;s &amp;quot;map&amp;quot; function to calibrate it.&lt;/div&gt;</summary>
		<author><name>JaneMiller</name></author>
	</entry>
	<entry>
		<id>https://hades.mech.northwestern.edu//index.php?title=Force-Sensing_Resistor&amp;diff=23205</id>
		<title>Force-Sensing Resistor</title>
		<link rel="alternate" type="text/html" href="https://hades.mech.northwestern.edu//index.php?title=Force-Sensing_Resistor&amp;diff=23205"/>
		<updated>2015-03-28T01:19:44Z</updated>

		<summary type="html">&lt;p&gt;JaneMiller: Created page with &amp;quot; == Force Sensing Resistor ==&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Force Sensing Resistor ==&lt;/div&gt;</summary>
		<author><name>JaneMiller</name></author>
	</entry>
	<entry>
		<id>https://hades.mech.northwestern.edu//index.php?title=Analog_Distance_Sensor&amp;diff=23204</id>
		<title>Analog Distance Sensor</title>
		<link rel="alternate" type="text/html" href="https://hades.mech.northwestern.edu//index.php?title=Analog_Distance_Sensor&amp;diff=23204"/>
		<updated>2015-03-28T01:18:52Z</updated>

		<summary type="html">&lt;p&gt;JaneMiller: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Sharp 4-30 cm Analog Distance Sensor ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Summary&#039;&#039;&#039;&lt;br /&gt;
*This sensor detects reflective objects that are 4-30 cm away. &lt;br /&gt;
*The sensor outputs a voltage from approximately 0-3.3 volts which you can read into a microcontroller&lt;br /&gt;
&lt;br /&gt;
---------------------------------------&lt;br /&gt;
&#039;&#039;&#039;Wiring&#039;&#039;&#039;&lt;br /&gt;
*This sensor has three cables coming out of it: red-power, black-ground and white-signal. &lt;br /&gt;
*Wire the power cable to the Arduino&#039;s 5V, the ground to the Arduino&#039;s ground&lt;br /&gt;
**Plug the signal cable into any of the Arduino&#039;s analog input pins (A0-A5 for the Arduino UNO) with a small pull-down resistor&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Programming&#039;&#039;&#039;&lt;br /&gt;
*Looking at the graph on page 4 [https://www.pololu.com/file/0J713/GP2Y0A41SK0F.pdf &#039;&#039;&#039;in the datasheet for the sensor&#039;&#039;&#039;], it looks like the range of 4-30 cm corresponds to a range of 2.5-0.4 volts. &lt;br /&gt;
*We can use the Arduino&#039;s analogRead() function to read in this signal. By using the analogRead function, our result will be a number in the range 0-1023, which corresponds to 0-5 volts. &lt;br /&gt;
*To calibrate and find values for our sensor, we can stream the output values of our sensor using a program similar to [http://arduino.cc/en/Tutorial/AnalogReadSerial &#039;&#039;&#039;this example&#039;&#039;&#039;] from the Arduino website:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
/*&lt;br /&gt;
  AnalogReadSerial&lt;br /&gt;
  Reads an analog input on pin 0, prints the result to the serial monitor.&lt;br /&gt;
  Attach the center pin of a potentiometer to pin A0, and the outside pins to +5V and ground.&lt;br /&gt;
 &lt;br /&gt;
 This example code is in the public domain.&lt;br /&gt;
 */&lt;br /&gt;
&lt;br /&gt;
// the setup routine runs once when you press reset:&lt;br /&gt;
void setup() {&lt;br /&gt;
  // initialize serial communication at 9600 bits per second:&lt;br /&gt;
  Serial.begin(9600);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
// the loop routine runs over and over again forever:&lt;br /&gt;
void loop() {&lt;br /&gt;
  // read the input on analog pin 0:&lt;br /&gt;
  int sensorValue = analogRead(A0);&lt;br /&gt;
  // print out the value you read:&lt;br /&gt;
  Serial.println(sensorValue);&lt;br /&gt;
  delay(1);        // delay in between reads for stability&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*To trigger some event when an object is further than a certain distance away, instead of using Serial.println on our sensorValue variable, we could compare it to some min_value variable using an if statement:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
int min_val=30;&lt;br /&gt;
&lt;br /&gt;
void setup(){&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
void loop() {&lt;br /&gt;
 //read sensor value&lt;br /&gt;
 int sensorValue= analogRead(A0)&lt;br /&gt;
 //convert this value to a distance, consider using the &amp;quot;map&amp;quot; function&lt;br /&gt;
 &lt;br /&gt;
 if (sensorValue &amp;gt; min_val)&lt;br /&gt;
 {&lt;br /&gt;
  // activate your event using a digitalWrite or some other function&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
 delay(1); //delay between readings&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*Try using this distance sensor with a few RGB LEDs to &amp;quot;show&amp;quot; how far away an object is with the intensity of the color of the LEDs!&lt;br /&gt;
**Try using the RGB LEDs with this sensor like a red/yellow/green stoplight&lt;/div&gt;</summary>
		<author><name>JaneMiller</name></author>
	</entry>
	<entry>
		<id>https://hades.mech.northwestern.edu//index.php?title=Analog_Distance_Sensor&amp;diff=23203</id>
		<title>Analog Distance Sensor</title>
		<link rel="alternate" type="text/html" href="https://hades.mech.northwestern.edu//index.php?title=Analog_Distance_Sensor&amp;diff=23203"/>
		<updated>2015-03-28T00:50:27Z</updated>

		<summary type="html">&lt;p&gt;JaneMiller: Created page with &amp;quot; == Sharp 4-30 cm Analog Distance Sensor ==  &amp;#039;&amp;#039;&amp;#039;Summary&amp;#039;&amp;#039;&amp;#039; *This sensor detects reflective objects that are 4-30 cm away.  *The sensor outputs a voltage from approximately 0-3...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Sharp 4-30 cm Analog Distance Sensor ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Summary&#039;&#039;&#039;&lt;br /&gt;
*This sensor detects reflective objects that are 4-30 cm away. &lt;br /&gt;
*The sensor outputs a voltage from approximately 0-3.3 volts which you can read into a microcontroller&lt;br /&gt;
&lt;br /&gt;
---------------------------------------&lt;br /&gt;
&#039;&#039;&#039;Wiring&#039;&#039;&#039;&lt;br /&gt;
*This sensor has three cables coming out of it: red-power, black-ground and white-signal. &lt;br /&gt;
*Wire the power cable to the Arduino&#039;s 5V, the ground to the Arduino&#039;s ground&lt;br /&gt;
**Plug the signal cable into any of the Arduino&#039;s analog input pins (A0-A5 for the Arduino UNO) with a small pull-down resistor&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Programming&#039;&#039;&#039;&lt;br /&gt;
*Looking at the graph on page 4 [https://www.pololu.com/file/0J713/GP2Y0A41SK0F.pdf &#039;&#039;&#039;in the datasheet for the sensor&#039;&#039;&#039;]&lt;/div&gt;</summary>
		<author><name>JaneMiller</name></author>
	</entry>
	<entry>
		<id>https://hades.mech.northwestern.edu//index.php?title=Three-Axis_Accelerometer&amp;diff=23202</id>
		<title>Three-Axis Accelerometer</title>
		<link rel="alternate" type="text/html" href="https://hades.mech.northwestern.edu//index.php?title=Three-Axis_Accelerometer&amp;diff=23202"/>
		<updated>2015-03-28T00:35:32Z</updated>

		<summary type="html">&lt;p&gt;JaneMiller: Created page with &amp;quot; == Three-Axis Accelerometer ==&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Three-Axis Accelerometer ==&lt;/div&gt;</summary>
		<author><name>JaneMiller</name></author>
	</entry>
	<entry>
		<id>https://hades.mech.northwestern.edu//index.php?title=RGB_LEDs&amp;diff=23201</id>
		<title>RGB LEDs</title>
		<link rel="alternate" type="text/html" href="https://hades.mech.northwestern.edu//index.php?title=RGB_LEDs&amp;diff=23201"/>
		<updated>2015-03-28T00:26:58Z</updated>

		<summary type="html">&lt;p&gt;JaneMiller: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== WS2812 Addressable RGB LEDs ==&lt;br /&gt;
 (NeoPixels)[[image:Adafruit_RGB_LEDS.jpg|thumb|250px|[http://www.adafruit.com/products/302 RGB LEDs]|right]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Install the NeoPixels Library&#039;&#039;&#039;&lt;br /&gt;
*[https://github.com/adafruit/Adafruit_NeoPixel Download ZIP of all library files here]&lt;br /&gt;
*Unzip the ZIP file when it&#039;s done downloading&lt;br /&gt;
*Put all of the files from the folder into a new folder called &amp;quot;Adafruit_NeoPixels&amp;quot;&lt;br /&gt;
*Put this new folder into your Adruino Libraries folder (usually located at  (home folder)/Documents/Arduino/Libraries)&lt;br /&gt;
**If you don&#039;t have a &amp;quot;Libraries&amp;quot; folder in Arduino/Libraries, create one and put the Adafruit_NeoPixels folder in it&lt;br /&gt;
*Restart the Arduino IDE if it&#039;s already running&lt;br /&gt;
*Open up a new Arduino sketch (program) and check to see if the Adafruit NeoPixels library is installed by going to Sketch--&amp;gt;Import Library and seeing if the NeoPixels library is listed.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[image:RGB_LEDs_Wiring.jpg|thumb|100px|[https://cdn.sparkfun.com/datasheets/Components/LED/COM-12877.pdf RGB LEDs Datasheet]|right]]&lt;br /&gt;
[[image:RGB_LEDs_Wiring_Diagram.jpg|thumb|350px|Wiring up Two LEDs|right]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Wire Up Your LEDs&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
*The pinout for one of our RGB LEDs is as shown to the right&lt;br /&gt;
*When creating a circuit with RGB LEDs, make sure to have a 300-500 ohm resistor on the data input for the first LED&lt;br /&gt;
**Also make sure to connect the ground wire, then the +5V wire&lt;br /&gt;
**When disconnecting, disconnect power, then ground&lt;br /&gt;
*The next diagram down to the right shows how to wire up two RGB LEDs in a chain to an Arduino Uno.&lt;br /&gt;
**The signal for the second LED will travel through the first one. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Writing Code&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
*This program is a simple test program based on the &amp;quot;simple&amp;quot; example program that comes with the NeoPixels Library.&lt;br /&gt;
*If you&#039;re using the circuit diagrammed above, this program should make both of your LEDs a moderate green color&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#include &amp;lt;Adafruit_NeoPixel.h&amp;gt;&lt;br /&gt;
#include &amp;lt;avr/power.h&amp;gt;&lt;br /&gt;
&lt;br /&gt;
// Which pin on the Arduino is connected to the NeoPixels?&lt;br /&gt;
// On a Trinket or Gemma we suggest changing this to 1&lt;br /&gt;
#define PIN            8&lt;br /&gt;
&lt;br /&gt;
// How many NeoPixels are attached to the Arduino?&lt;br /&gt;
#define NUMPIXELS      2&lt;br /&gt;
&lt;br /&gt;
// When we setup the NeoPixel library, we tell it how many pixels, and which pin to use to send signals.&lt;br /&gt;
// example for more information on possible values.&lt;br /&gt;
Adafruit_NeoPixel pixels = Adafruit_NeoPixel(NUMPIXELS, PIN, NEO_RGB + NEO_KHZ800);&lt;br /&gt;
&lt;br /&gt;
int delayval = 500; // delay for half a second&lt;br /&gt;
&lt;br /&gt;
void setup() {&lt;br /&gt;
  pixels.begin(); // This initializes the NeoPixel library.&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
void loop() {&lt;br /&gt;
&lt;br /&gt;
  // For a set of NeoPixels the first NeoPixel is 0, second is 1, all the way up to the count of pixels minus one.&lt;br /&gt;
  for(int i=0;i&amp;lt;NUMPIXELS;i++){&lt;br /&gt;
&lt;br /&gt;
    // pixels.Color takes RGB values, from 0,0,0 up to 255,255,255&lt;br /&gt;
    pixels.setPixelColor(i, pixels.Color(0,150,0)); // Moderately bright green color.&lt;br /&gt;
&lt;br /&gt;
    pixels.show(); // This sends the updated pixel color to the hardware.&lt;br /&gt;
&lt;br /&gt;
    delay(delayval); // Delay for a period of time (in milliseconds).&lt;br /&gt;
&lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*The other examples in the NeoPixels example folder give demonstrations of more complex programs and other displays you can create with the NeoPixels&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Applications&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
*RGB LEDs are great to use as analog &amp;quot;status&amp;quot; lights telling you information such as:&lt;br /&gt;
**How much battery something has left&lt;br /&gt;
**How much pressure is applied to something&lt;br /&gt;
**If it&#039;s an appropriate time to trigger some other action&lt;/div&gt;</summary>
		<author><name>JaneMiller</name></author>
	</entry>
	<entry>
		<id>https://hades.mech.northwestern.edu//index.php?title=RGB_LEDs&amp;diff=23200</id>
		<title>RGB LEDs</title>
		<link rel="alternate" type="text/html" href="https://hades.mech.northwestern.edu//index.php?title=RGB_LEDs&amp;diff=23200"/>
		<updated>2015-03-28T00:25:10Z</updated>

		<summary type="html">&lt;p&gt;JaneMiller: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;WS2812 Addressable RGB LEDs (NeoPixels)&#039;&#039;&#039;[[image:Adafruit_RGB_LEDS.jpg|thumb|250px|[http://www.adafruit.com/products/302 RGB LEDs]|right]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Install the NeoPixels Library&#039;&#039;&#039;&lt;br /&gt;
*[https://github.com/adafruit/Adafruit_NeoPixel Download ZIP of all library files here]&lt;br /&gt;
*Unzip the ZIP file when it&#039;s done downloading&lt;br /&gt;
*Put all of the files from the folder into a new folder called &amp;quot;Adafruit_NeoPixels&amp;quot;&lt;br /&gt;
*Put this new folder into your Adruino Libraries folder (usually located at  (home folder)/Documents/Arduino/Libraries)&lt;br /&gt;
**If you don&#039;t have a &amp;quot;Libraries&amp;quot; folder in Arduino/Libraries, create one and put the Adafruit_NeoPixels folder in it&lt;br /&gt;
*Restart the Arduino IDE if it&#039;s already running&lt;br /&gt;
*Open up a new Arduino sketch (program) and check to see if the Adafruit NeoPixels library is installed by going to Sketch--&amp;gt;Import Library and seeing if the NeoPixels library is listed.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[image:RGB_LEDs_Wiring.jpg|thumb|100px|[https://cdn.sparkfun.com/datasheets/Components/LED/COM-12877.pdf RGB LEDs Datasheet]|right]]&lt;br /&gt;
[[image:RGB_LEDs_Wiring_Diagram.jpg|thumb|350px|Wiring up Two LEDs|right]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Wire Up Your LEDs&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
*The pinout for one of our RGB LEDs is as shown to the right&lt;br /&gt;
*When creating a circuit with RGB LEDs, make sure to have a 300-500 ohm resistor on the data input for the first LED&lt;br /&gt;
**Also make sure to connect the ground wire, then the +5V wire&lt;br /&gt;
**When disconnecting, disconnect power, then ground&lt;br /&gt;
*The next diagram down to the right shows how to wire up two RGB LEDs in a chain to an Arduino Uno.&lt;br /&gt;
**The signal for the second LED will travel through the first one. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Writing Code&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
*This program is a simple test program based on the &amp;quot;simple&amp;quot; example program that comes with the NeoPixels Library.&lt;br /&gt;
*If you&#039;re using the circuit diagrammed above, this program should make both of your LEDs a moderate green color&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#include &amp;lt;Adafruit_NeoPixel.h&amp;gt;&lt;br /&gt;
#include &amp;lt;avr/power.h&amp;gt;&lt;br /&gt;
&lt;br /&gt;
// Which pin on the Arduino is connected to the NeoPixels?&lt;br /&gt;
// On a Trinket or Gemma we suggest changing this to 1&lt;br /&gt;
#define PIN            8&lt;br /&gt;
&lt;br /&gt;
// How many NeoPixels are attached to the Arduino?&lt;br /&gt;
#define NUMPIXELS      2&lt;br /&gt;
&lt;br /&gt;
// When we setup the NeoPixel library, we tell it how many pixels, and which pin to use to send signals.&lt;br /&gt;
// example for more information on possible values.&lt;br /&gt;
Adafruit_NeoPixel pixels = Adafruit_NeoPixel(NUMPIXELS, PIN, NEO_RGB + NEO_KHZ800);&lt;br /&gt;
&lt;br /&gt;
int delayval = 500; // delay for half a second&lt;br /&gt;
&lt;br /&gt;
void setup() {&lt;br /&gt;
  pixels.begin(); // This initializes the NeoPixel library.&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
void loop() {&lt;br /&gt;
&lt;br /&gt;
  // For a set of NeoPixels the first NeoPixel is 0, second is 1, all the way up to the count of pixels minus one.&lt;br /&gt;
  for(int i=0;i&amp;lt;NUMPIXELS;i++){&lt;br /&gt;
&lt;br /&gt;
    // pixels.Color takes RGB values, from 0,0,0 up to 255,255,255&lt;br /&gt;
    pixels.setPixelColor(i, pixels.Color(0,150,0)); // Moderately bright green color.&lt;br /&gt;
&lt;br /&gt;
    pixels.show(); // This sends the updated pixel color to the hardware.&lt;br /&gt;
&lt;br /&gt;
    delay(delayval); // Delay for a period of time (in milliseconds).&lt;br /&gt;
&lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*The other examples in the NeoPixels example folder give demonstrations of more complex programs and other displays you can create with the NeoPixels&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Applications&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
*RGB LEDs are great to use as analog &amp;quot;status&amp;quot; lights telling you information such as:&lt;br /&gt;
**How much battery something has left&lt;br /&gt;
**How much pressure is applied to something&lt;br /&gt;
**If it&#039;s an appropriate time to trigger some other action&lt;/div&gt;</summary>
		<author><name>JaneMiller</name></author>
	</entry>
	<entry>
		<id>https://hades.mech.northwestern.edu//index.php?title=RGB_LEDs&amp;diff=23199</id>
		<title>RGB LEDs</title>
		<link rel="alternate" type="text/html" href="https://hades.mech.northwestern.edu//index.php?title=RGB_LEDs&amp;diff=23199"/>
		<updated>2015-03-27T23:59:47Z</updated>

		<summary type="html">&lt;p&gt;JaneMiller: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;WS2812 Addressable RGB LEDs (NeoPixels)&#039;&#039;&#039;[[image:Adafruit_RGB_LEDS.jpg|thumb|250px|[http://www.adafruit.com/products/302 RGB LEDs]|right]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Install the NeoPixels Library&#039;&#039;&#039;&lt;br /&gt;
*[https://github.com/adafruit/Adafruit_NeoPixel Download ZIP of all library files here]&lt;br /&gt;
*Unzip the ZIP file when it&#039;s done downloading&lt;br /&gt;
*Put all of the files from the folder into a new folder called &amp;quot;Adafruit_NeoPixels&amp;quot;&lt;br /&gt;
*Put this new folder into your Adruino Libraries folder (usually located at  (home folder)/Documents/Arduino/Libraries)&lt;br /&gt;
**If you don&#039;t have a &amp;quot;Libraries&amp;quot; folder in Arduino/Libraries, create one and put the Adafruit_NeoPixels folder in it&lt;br /&gt;
*Restart the Arduino IDE if it&#039;s already running&lt;br /&gt;
*Open up a new Arduino sketch (program) and check to see if the Adafruit NeoPixels library is installed by going to &lt;br /&gt;
 Sketch--&amp;gt;Import Library and seeing if the NeoPixels library is listed.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Wire Up Your LEDs&#039;&#039;&#039;[[image:RGB_LEDs_Wiring.jpg|thumb|150px|[https://cdn.sparkfun.com/datasheets/Components/LED/COM-12877.pdf RGB LEDs Datasheet]|right]][[image:RGB_LEDs_Wiring_Diagram.jpg|thumb|100px|Wiring up Two LEDs|right]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*The pinout for one of our RGB LEDs is as shown to the right&lt;br /&gt;
*When creating a circuit with RGB LEDs, make sure to have a 300-500 ohm resistor on the data input for the first LED&lt;br /&gt;
*The next diagram down to the right shows how to wire up two RGB LEDs in a chain to an Arduino Uno. &lt;br /&gt;
 The signal for the second LED will travel through the first one. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
*Write code&lt;br /&gt;
*Applications&lt;/div&gt;</summary>
		<author><name>JaneMiller</name></author>
	</entry>
	<entry>
		<id>https://hades.mech.northwestern.edu//index.php?title=File:RGB_LEDs_Wiring_Diagram.jpg&amp;diff=23198</id>
		<title>File:RGB LEDs Wiring Diagram.jpg</title>
		<link rel="alternate" type="text/html" href="https://hades.mech.northwestern.edu//index.php?title=File:RGB_LEDs_Wiring_Diagram.jpg&amp;diff=23198"/>
		<updated>2015-03-27T23:51:53Z</updated>

		<summary type="html">&lt;p&gt;JaneMiller: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>JaneMiller</name></author>
	</entry>
	<entry>
		<id>https://hades.mech.northwestern.edu//index.php?title=RGB_LEDs&amp;diff=23197</id>
		<title>RGB LEDs</title>
		<link rel="alternate" type="text/html" href="https://hades.mech.northwestern.edu//index.php?title=RGB_LEDs&amp;diff=23197"/>
		<updated>2015-03-27T23:10:27Z</updated>

		<summary type="html">&lt;p&gt;JaneMiller: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;WS2812 Addressable RGB LEDs (NeoPixels)&#039;&#039;&#039;[[image:Adafruit_RGB_LEDS.jpg|thumb|250px|[http://www.adafruit.com/products/302 RGB LEDs]|right]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Install the NeoPixels Library&#039;&#039;&#039;&lt;br /&gt;
*[https://github.com/adafruit/Adafruit_NeoPixel Download ZIP of all library files here]&lt;br /&gt;
*Unzip the ZIP file when it&#039;s done downloading&lt;br /&gt;
*Put all of the files from the folder into a new folder called &amp;quot;Adafruit_NeoPixels&amp;quot;&lt;br /&gt;
*Put this new folder into your Adruino Libraries folder (usually located at  (home folder)/Documents/Arduino/Libraries)&lt;br /&gt;
**If you don&#039;t have a &amp;quot;Libraries&amp;quot; folder in Arduino/Libraries, create one and put the Adafruit_NeoPixels folder in it&lt;br /&gt;
*Restart the Arduino IDE if it&#039;s already running&lt;br /&gt;
*Open up a new Arduino sketch (program) and check to see if the Adafruit NeoPixels library is installed by going to Sketch--&amp;gt;Import Library and seeing if the NeoPixels library is listed.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Wire Up Your LEDs&#039;&#039;&#039;[[image:RGB_LEDs_Wiring.jpg|thumb|150px|[https://cdn.sparkfun.com/datasheets/Components/LED/COM-12877.pdf RGB LEDs Datasheet]|right]]&lt;br /&gt;
[[image:RGB_LEDs_Wiring_Diagram.jpg|medium|150px|Wiring up Two LEDs|center]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
*Write code&lt;br /&gt;
*Applications&lt;/div&gt;</summary>
		<author><name>JaneMiller</name></author>
	</entry>
	<entry>
		<id>https://hades.mech.northwestern.edu//index.php?title=RGB_LEDs&amp;diff=23196</id>
		<title>RGB LEDs</title>
		<link rel="alternate" type="text/html" href="https://hades.mech.northwestern.edu//index.php?title=RGB_LEDs&amp;diff=23196"/>
		<updated>2015-03-13T21:02:41Z</updated>

		<summary type="html">&lt;p&gt;JaneMiller: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;WS2812 Addressable RGB LEDs (NeoPixels)&#039;&#039;&#039;[[image:Adafruit_RGB_LEDS.jpg|thumb|250px|[http://www.adafruit.com/products/302 RGB LEDs]|right]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Install the NeoPixels Library&#039;&#039;&#039;&lt;br /&gt;
*[https://github.com/adafruit/Adafruit_NeoPixel Download ZIP of all library files here]&lt;br /&gt;
*Unzip the ZIP file when it&#039;s done downloading&lt;br /&gt;
*Put all of the files from the folder into a new folder called &amp;quot;Adafruit_NeoPixels&amp;quot;&lt;br /&gt;
*Put this new folder into your Adruino Libraries folder (usually located at  (home folder)/Documents/Arduino/Libraries)&lt;br /&gt;
**If you don&#039;t have a &amp;quot;Libraries&amp;quot; folder in Arduino/Libraries, create one and put the Adafruit_NeoPixels folder in it&lt;br /&gt;
*Restart the Arduino IDE if it&#039;s already running&lt;br /&gt;
*Open up a new Arduino sketch (program) and check to see if the Adafruit NeoPixels library is installed by going to Sketch--&amp;gt;Import Library and seeing if the NeoPixels library is listed.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Wire Up Your LEDs&#039;&#039;&#039;[[image:RGB_LEDs_Wiring.jpg|thumb|150px|[https://cdn.sparkfun.com/datasheets/Components/LED/COM-12877.pdf RGB LEDs Datasheet]|right]]&lt;br /&gt;
*Diagram of how to wire 2 RGB LEDs together goes here&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
*Write code&lt;br /&gt;
*Applications&lt;/div&gt;</summary>
		<author><name>JaneMiller</name></author>
	</entry>
	<entry>
		<id>https://hades.mech.northwestern.edu//index.php?title=RGB_LEDs&amp;diff=23195</id>
		<title>RGB LEDs</title>
		<link rel="alternate" type="text/html" href="https://hades.mech.northwestern.edu//index.php?title=RGB_LEDs&amp;diff=23195"/>
		<updated>2015-03-13T21:00:28Z</updated>

		<summary type="html">&lt;p&gt;JaneMiller: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;WS2812 Addressable RGB LEDs (NeoPixels)&#039;&#039;&#039;[[image:Adafruit_RGB_LEDS.jpg|thumb|250px|[http://www.adafruit.com/products/302 RGB LEDs]|right]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 butt&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Install the NeoPixels Library&#039;&#039;&#039;&lt;br /&gt;
*[https://github.com/adafruit/Adafruit_NeoPixel Download ZIP of all library files here]&lt;br /&gt;
*Unzip the ZIP file when it&#039;s done downloading&lt;br /&gt;
*Put all of the files from the folder into a new folder called &amp;quot;Adafruit_NeoPixels&amp;quot;&lt;br /&gt;
*Put this new folder into your Adruino Libraries folder (usually located at  (home folder)/Documents/Arduino/Libraries)&lt;br /&gt;
**If you don&#039;t have a &amp;quot;Libraries&amp;quot; folder in Arduino/Libraries, create one and put the Adafruit_NeoPixels folder in it&lt;br /&gt;
*Restart the Arduino IDE if it&#039;s already running&lt;br /&gt;
*Open up a new Arduino sketch (program) and check to see if the Adafruit NeoPixels library is installed by going to Sketch--&amp;gt;Import Library and seeing if the NeoPixels library is listed.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Wire Up Your LEDs&#039;&#039;&#039;[[image:RGB_LEDs_Wiring.jpg|thumb|150px|[https://cdn.sparkfun.com/datasheets/Components/LED/COM-12877.pdf RGB LEDs Datasheet]|right]]&lt;br /&gt;
*Diagram of how to wire 2 RGB LEDs together goes here&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
*Write code&lt;br /&gt;
*Applications&lt;/div&gt;</summary>
		<author><name>JaneMiller</name></author>
	</entry>
	<entry>
		<id>https://hades.mech.northwestern.edu//index.php?title=File:RGB_LEDs_Wiring.jpg&amp;diff=23194</id>
		<title>File:RGB LEDs Wiring.jpg</title>
		<link rel="alternate" type="text/html" href="https://hades.mech.northwestern.edu//index.php?title=File:RGB_LEDs_Wiring.jpg&amp;diff=23194"/>
		<updated>2015-03-13T19:35:28Z</updated>

		<summary type="html">&lt;p&gt;JaneMiller: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>JaneMiller</name></author>
	</entry>
	<entry>
		<id>https://hades.mech.northwestern.edu//index.php?title=RGB_LEDs&amp;diff=23193</id>
		<title>RGB LEDs</title>
		<link rel="alternate" type="text/html" href="https://hades.mech.northwestern.edu//index.php?title=RGB_LEDs&amp;diff=23193"/>
		<updated>2015-03-13T19:35:04Z</updated>

		<summary type="html">&lt;p&gt;JaneMiller: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;WS2812 Addressable RGB LEDs (NeoPixels)&#039;&#039;&#039;&lt;br /&gt;
[[image:Adafruit_RGB_LEDS.jpg|thumb|300px|[http://www.adafruit.com/products/302 RGB LEDs]|right]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Install the NeoPixels Library&#039;&#039;&#039;&lt;br /&gt;
*[https://github.com/adafruit/Adafruit_NeoPixel Download ZIP of all library files here]&lt;br /&gt;
*Unzip the ZIP file when it&#039;s done downloading&lt;br /&gt;
*Put all of the files from the folder into a new folder called &amp;quot;Adafruit_NeoPixels&amp;quot;&lt;br /&gt;
*Put this new folder into your Adruino Libraries folder (usually located at  (home folder)/Documents/Arduino/Libraries)&lt;br /&gt;
**If you don&#039;t have a &amp;quot;Libraries&amp;quot; folder in Arduino/Libraries, create one and put the Adafruit_NeoPixels folder in it&lt;br /&gt;
*Restart the Arduino IDE if it&#039;s already running&lt;br /&gt;
*Open up a new Arduino sketch (program) and check to see if the Adafruit NeoPixels library is installed by going to Sketch--&amp;gt;Import Library and seeing if the NeoPixels library is listed.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Wire Up Your LEDs&#039;&#039;&#039;&lt;br /&gt;
[[image:RGB_LEDs_Wiring.jpg|thumb|300px|[https://cdn.sparkfun.com/datasheets/Components/LED/COM-12877.pdf RGB LEDs Datasheet]|right]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
*Write code&lt;br /&gt;
*Applications&lt;/div&gt;</summary>
		<author><name>JaneMiller</name></author>
	</entry>
	<entry>
		<id>https://hades.mech.northwestern.edu//index.php?title=RGB_LEDs&amp;diff=23192</id>
		<title>RGB LEDs</title>
		<link rel="alternate" type="text/html" href="https://hades.mech.northwestern.edu//index.php?title=RGB_LEDs&amp;diff=23192"/>
		<updated>2015-03-13T19:02:20Z</updated>

		<summary type="html">&lt;p&gt;JaneMiller: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;WS2812 Addressable RGB LEDs (NeoPixels)&#039;&#039;&#039;&lt;br /&gt;
[[image:Adafruit_RGB_LEDS.jpg|thumb|300px|[http://www.adafruit.com/products/302 RGB LEDs]|right]]&lt;br /&gt;
&lt;br /&gt;
*Download the NeoPixels Library&lt;br /&gt;
*Wire up a circuit&lt;br /&gt;
*Write code&lt;br /&gt;
*Applications&lt;/div&gt;</summary>
		<author><name>JaneMiller</name></author>
	</entry>
	<entry>
		<id>https://hades.mech.northwestern.edu//index.php?title=File:Adafruit_RGB_LEDS.jpg&amp;diff=23191</id>
		<title>File:Adafruit RGB LEDS.jpg</title>
		<link rel="alternate" type="text/html" href="https://hades.mech.northwestern.edu//index.php?title=File:Adafruit_RGB_LEDS.jpg&amp;diff=23191"/>
		<updated>2015-03-13T19:01:48Z</updated>

		<summary type="html">&lt;p&gt;JaneMiller: Picture of RGB LEDs&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Picture of RGB LEDs&lt;/div&gt;</summary>
		<author><name>JaneMiller</name></author>
	</entry>
	<entry>
		<id>https://hades.mech.northwestern.edu//index.php?title=RGB_LEDs&amp;diff=23190</id>
		<title>RGB LEDs</title>
		<link rel="alternate" type="text/html" href="https://hades.mech.northwestern.edu//index.php?title=RGB_LEDs&amp;diff=23190"/>
		<updated>2015-03-13T19:01:15Z</updated>

		<summary type="html">&lt;p&gt;JaneMiller: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;WS2812 Addressable RGB LEDs (NeoPixels)&#039;&#039;&#039;&lt;br /&gt;
[[image:Adafruit_RGB_LEDS.jpg|thumb|800px|[http://www.adafruit.com/products/302 RGB LEDs]|center]]&lt;br /&gt;
&lt;br /&gt;
*Download the NeoPixels Library&lt;br /&gt;
*Wire up a circuit&lt;br /&gt;
*Write code&lt;br /&gt;
*Applications&lt;/div&gt;</summary>
		<author><name>JaneMiller</name></author>
	</entry>
	<entry>
		<id>https://hades.mech.northwestern.edu//index.php?title=RGB_LEDs&amp;diff=23189</id>
		<title>RGB LEDs</title>
		<link rel="alternate" type="text/html" href="https://hades.mech.northwestern.edu//index.php?title=RGB_LEDs&amp;diff=23189"/>
		<updated>2015-03-13T18:57:14Z</updated>

		<summary type="html">&lt;p&gt;JaneMiller: Created page with &amp;quot;&amp;#039;&amp;#039;&amp;#039;WS2812 Addressable RGB LEDs (NeoPixels)&amp;#039;&amp;#039;&amp;#039;   *Download the NeoPixels Library *Wire up a circuit *Write code *Applications&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;WS2812 Addressable RGB LEDs (NeoPixels)&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*Download the NeoPixels Library&lt;br /&gt;
*Wire up a circuit&lt;br /&gt;
*Write code&lt;br /&gt;
*Applications&lt;/div&gt;</summary>
		<author><name>JaneMiller</name></author>
	</entry>
	<entry>
		<id>https://hades.mech.northwestern.edu//index.php?title=DTC&amp;diff=23188</id>
		<title>DTC</title>
		<link rel="alternate" type="text/html" href="https://hades.mech.northwestern.edu//index.php?title=DTC&amp;diff=23188"/>
		<updated>2015-03-13T18:48:05Z</updated>

		<summary type="html">&lt;p&gt;JaneMiller: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Arduino Tutorials (Spring 2015)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Work in Progress&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*[http://arduino.cc/en/Guide/HomePage Getting Started with the Arduino Uno ]&lt;br /&gt;
**[http://arduino.cc/en/Main/Software Software Download]&lt;br /&gt;
*[[RGB LEDs]]&lt;br /&gt;
*[[Three-Axis Accelerometer]]&lt;br /&gt;
*[[Force-Sensing Resistor]]&lt;br /&gt;
*[[Analog Distance Sensor]]&lt;/div&gt;</summary>
		<author><name>JaneMiller</name></author>
	</entry>
	<entry>
		<id>https://hades.mech.northwestern.edu//index.php?title=DTC&amp;diff=23187</id>
		<title>DTC</title>
		<link rel="alternate" type="text/html" href="https://hades.mech.northwestern.edu//index.php?title=DTC&amp;diff=23187"/>
		<updated>2015-03-13T18:30:10Z</updated>

		<summary type="html">&lt;p&gt;JaneMiller: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Arduino Tutorials (Spring 2015)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Work in Progress&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*[http://arduino.cc/en/Guide/HomePage Getting Started with the Arduino Uno ]&lt;br /&gt;
*[[RGB LEDs]]&lt;br /&gt;
*[[Three-Axis Accelerometer]]&lt;br /&gt;
*[[Force-Sensing Resistor]]&lt;br /&gt;
*[[Analog Distance Sensor]]&lt;/div&gt;</summary>
		<author><name>JaneMiller</name></author>
	</entry>
	<entry>
		<id>https://hades.mech.northwestern.edu//index.php?title=DTC&amp;diff=23186</id>
		<title>DTC</title>
		<link rel="alternate" type="text/html" href="https://hades.mech.northwestern.edu//index.php?title=DTC&amp;diff=23186"/>
		<updated>2015-03-13T18:29:27Z</updated>

		<summary type="html">&lt;p&gt;JaneMiller: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Arduino Tutorials (Spring 2015)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Work in Progress&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*[Getting Started with the Arduino Uno http://arduino.cc/en/Guide/HomePage]&lt;br /&gt;
*[[RGB LEDs]]&lt;br /&gt;
*[[Three-Axis Accelerometer]]&lt;br /&gt;
*[[Force-Sensing Resistor]]&lt;br /&gt;
*[[Analog Distance Sensor]]&lt;/div&gt;</summary>
		<author><name>JaneMiller</name></author>
	</entry>
	<entry>
		<id>https://hades.mech.northwestern.edu//index.php?title=DTC&amp;diff=23185</id>
		<title>DTC</title>
		<link rel="alternate" type="text/html" href="https://hades.mech.northwestern.edu//index.php?title=DTC&amp;diff=23185"/>
		<updated>2015-03-13T18:24:20Z</updated>

		<summary type="html">&lt;p&gt;JaneMiller: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Arduino Tutorials (Spring 2015)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Work in Progress&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*[[Getting Started with the Arduino Uno]]&lt;br /&gt;
*[[RGB LEDs]]&lt;br /&gt;
*[[Three-Axis Accelerometer]]&lt;br /&gt;
*[[Force-Sensing Resistor]]&lt;br /&gt;
*[[Analog Distance Sensor]]&lt;/div&gt;</summary>
		<author><name>JaneMiller</name></author>
	</entry>
	<entry>
		<id>https://hades.mech.northwestern.edu//index.php?title=DTC&amp;diff=23184</id>
		<title>DTC</title>
		<link rel="alternate" type="text/html" href="https://hades.mech.northwestern.edu//index.php?title=DTC&amp;diff=23184"/>
		<updated>2015-03-13T18:23:15Z</updated>

		<summary type="html">&lt;p&gt;JaneMiller: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Arduino Tutorials (Spring 2015)&lt;br /&gt;
&#039;&#039;Work in Progress&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*[[Getting Started with Arduino]]&lt;br /&gt;
*[[RGB LEDs]]&lt;br /&gt;
*[[Three-Axis Accelerometer]]&lt;br /&gt;
*[[Force-Sensing Resistor]]&lt;br /&gt;
*[[Analog Distance Sensor]]&lt;/div&gt;</summary>
		<author><name>JaneMiller</name></author>
	</entry>
	<entry>
		<id>https://hades.mech.northwestern.edu//index.php?title=DTC&amp;diff=23183</id>
		<title>DTC</title>
		<link rel="alternate" type="text/html" href="https://hades.mech.northwestern.edu//index.php?title=DTC&amp;diff=23183"/>
		<updated>2015-03-13T18:22:29Z</updated>

		<summary type="html">&lt;p&gt;JaneMiller: added links for additional tutorial pages&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;DTC Arduino Tutorials (work in progress by Jane Miller)&lt;br /&gt;
*[[Getting Started with Arduino]]&lt;br /&gt;
*[[RGB LEDs]]&lt;br /&gt;
*[[Three-Axis Accelerometer]]&lt;br /&gt;
*[[Force-Sensing Resistor]]&lt;br /&gt;
*[[Analog Distance Sensor]]&lt;/div&gt;</summary>
		<author><name>JaneMiller</name></author>
	</entry>
	<entry>
		<id>https://hades.mech.northwestern.edu//index.php?title=DTC&amp;diff=23182</id>
		<title>DTC</title>
		<link rel="alternate" type="text/html" href="https://hades.mech.northwestern.edu//index.php?title=DTC&amp;diff=23182"/>
		<updated>2015-03-13T18:11:36Z</updated>

		<summary type="html">&lt;p&gt;JaneMiller: Created page to begin storing and developing DTC Arduino tutorials&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;DTC Arduino Tutorials (work in progress by Jane Miller)&lt;/div&gt;</summary>
		<author><name>JaneMiller</name></author>
	</entry>
	<entry>
		<id>https://hades.mech.northwestern.edu//index.php?title=Main_Page&amp;diff=23181</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://hades.mech.northwestern.edu//index.php?title=Main_Page&amp;diff=23181"/>
		<updated>2015-03-13T18:10:15Z</updated>

		<summary type="html">&lt;p&gt;JaneMiller: Added link to DTC page for Arduino tutorials&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:mechlab.jpg|right|thumb|[http://mechatronics.mech.northwestern.edu/ Northwestern Mechatronics Design Lab]]]&lt;br /&gt;
&lt;br /&gt;
The Northwestern University mechatronics design wiki provides reference material on the theory and applications of electronics, sensors, actuators, etc., for use in mechatronics-related research and projects.  Practical applications often refer to equipment and supplies available in the [http://mechatronics.mech.northwestern.edu/ Northwestern Mechatronics Design Lab].&lt;br /&gt;
&lt;br /&gt;
The mechatronics wiki was initiated by undergraduate Ben Stephens in 2006, under the supervision of Profs. Kevin Lynch and Michael Peshkin.  Since then, many students have contributed content.&lt;br /&gt;
&lt;br /&gt;
Important:  Please be sure to read the [http://mechatronics.mech.northwestern.edu/mech-rules.pdf Rules for Using the Mechatronics Design Lab].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
(Here you can find the [[Old Index Page]] of the mechatronics wiki, as of May 2, 2009.  That page is now obsolete, and new material should be indexed on the pages below.  New pages may be indexed in multiple places.)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [[Editing the mechatronics wiki]] (or visit [[The sandbox]] to practice your wiki skills)&lt;br /&gt;
* [[Electronics basics]]&lt;br /&gt;
* [[Sensors]]&lt;br /&gt;
* [[Actuators]]&lt;br /&gt;
* [[Communication]]&lt;br /&gt;
* Control computers and software&lt;br /&gt;
**[[Robot Club]]&lt;br /&gt;
**[[nScope]]&lt;br /&gt;
**[[NUScope]]&lt;br /&gt;
** [[Microchip PICs]]&lt;br /&gt;
** [[PC/104 stacks and Matlab xPC]]&lt;br /&gt;
** [[QNX]]&lt;br /&gt;
** [[Robot Operating System]]&lt;br /&gt;
** [[Processing]]&lt;br /&gt;
** [[Node.js]]&lt;br /&gt;
** [[Eagle]]&lt;br /&gt;
** [[KiCad]]&lt;br /&gt;
** [[C Compilers]]&lt;br /&gt;
* Courses&lt;br /&gt;
** [[DTC]]&lt;br /&gt;
** [[EDI Bootcamp]]&lt;br /&gt;
** [[ME 224 Experimental Engineering]]&lt;br /&gt;
** [[ME 333 Introduction to Mechatronics]]&lt;br /&gt;
*** [[ME 333 Readings, Videos, and Sample Code]]&lt;br /&gt;
*** [[ME 333 final projects]] (2010 and earlier)&lt;br /&gt;
** [http://www.mech.northwestern.edu/courses/descriptions/433-advanced-mechatronics.html ME 433 Advanced Mechatronics] &lt;br /&gt;
** [[Northwestern Design Competition]]&lt;br /&gt;
** [[ME 449 Robotic Manipulation]]&lt;br /&gt;
* [[Tools in the lab and shop]] (software, hardware, supplies, etc.)&lt;br /&gt;
* [[Vendors and Useful Links]]&lt;br /&gt;
* [[Projects and miscellaneous]] (projects, research, and other mechatronics-related info)&lt;/div&gt;</summary>
		<author><name>JaneMiller</name></author>
	</entry>
</feed>