Know How...

Feb 18th 2016

Know How... 187

DIY SteamPunk Goggles Finished

Finish the build along for the Ultimate Steampunk Goggles

Although the show is no longer in production, you can enjoy episodes from the TWiT Archives.
Category: Help & How To

Final episode for our do it yourself Steampunk Goggles, learn the code, how to build, and download the files needed for a 3D printer.

 

3D Printing the Housing

All the STL files are contained in the following ZIP archive 

 

Goggle Integration Instructions:

1. Solder 30awg black/red (ground/voltage) wires to the outside pins of the potentiometer

2. Solder a single 30awg blue or white wire to the inside pin of the pot

3. Solder the black wire to an arduino GND through-hole

4. Solder the red wire to the arduino 5v through-hole

5. Solder the blue/white wire to the arduino Analog 7 through-hole

6. Insulate your Arduino assembly with a strip of 1-1/4" clear heat-shrink.

7. Insert the LED retention rings into each cup, making sure to keep the wires in the cutout

8. Install the potentiometer into the 6mm hole in the right cup, lighing up the support peg with the indent

9. Shave down the center hole of two brass gears so that they will fit around the pot shaft.

10. Place the brass gear over the pot shaft and fasten it with a washer and the mounting nut.

11. Insert the right cup into the right-frame, making sure to line up the bridge strap with the cutout in the frame piece, while holding back the wires so that they'll be hidden by the frame.

12. Using a piece of double-sided foam tape, secure the arduino to the inside of the right frame. 13. Remove the mounting nut, clips and clip spring from the magnifying loupe.

13. Insert the loupe pole through a brass gear, then insert it into the 2mm mounting hole in the left frame.

14. Secure the loupe with the mounting nut, tightening it until the loupe lenses are held in tension.

15. Run the battery harness through the hole at the bottom of the battery plate in the left frame piece.

16. Insert the left cup into the left frame, once again making sure that the wires are covered by the frame. Programming We need to add the code that allows us to use the potentiometer to control which animation is being displayed.

 

Things to Remember

1. We're using the "100 lines" code as the basis of our sketch

2. We soldered the wiper (the pin that sends variable voltage depending on the position of the pot) to Analog 7

3. The data line going to our LED rings is soldered to Digital 3 4. We have 32 LEDs (16 + 16)

 

Things that we changed in the Code

1. DATA_PIN is set to "3"

2. NUM_LEDS is set to "32"

3. Brightness is set to "100"

4. We added "Serial.begin(9600);" to the setup so we can get feedback from the Arduino

5. In "loop()", we changed the last line "EVERY_N_SECONDS( 10 ) { nextPattern();" to: -- "EVERY_N_Seconds ( .5 ) { pattern();" ** By bumping the "EVERY_N_SECONDS" down to .5, it means that the Arduino will call the "pattern()" function ever half-second, instead of checking every 10 seconds ** We're created the function "pattern()" to check the status of the Analog pot and turn it into a value that will set "gCurrentPatternNumber" to a value between 0-5

6. We added a function and an array entry for blanking the ring.

void pattern()

{ int aRead = analogRead(7); // This checks the pot connected to Analong Pin 7 and gives us a value between 0-1024 int PatChoice = map(aRead, 0, 1020, 0, 6); // This maps the value of the pot from 0-1020 to a value between 0-5 Serial.print(aRead); // debug -- Sends the value of the pot to the serial port Serial.print(""\t""); // debug -- Sends a tab Serial.println(PatChoice); // debug -- Sends the remapped value to the serial port, then breaks into a new line gCurrentPatternNumber = PatChoice; // Sent the animation value

}

 

Here is the Code!!! 

<p>Connect with us!</p><ul><li>Don't forget to check out our large library of projects at <a href="https://twit.tv/shows/know-how">https://twit.tv/shows/know-how</a>.</li… our Google+ Community at <a href="https://plus.google.com/communities/102778909882340711425&quot; target="_blank">http://gplus.to/twitkh</a></li><li>Tweet at us at <a href="https://twitter.com/PadreSJ&quot; target="_blank">@PadreSJ</a>, <a href="https://twitter.com/Cranky_Hippo&quot; target="_blank">@Cranky_Hippo</a>, and <a href="https://twitter.com/Anelf3&quot; target="_blank">@Anelf3</a></li></ul>