Prototyping

Ultrasound Parks My Car

Every day I back my Toyota 4Runner into my garage at home. I have a backup camera which makes it very easy to not hit anything. But that’s not good enough. I like to maximize my available space and this requires me getting my truck just barely inside the garage door. My quest for the perfect parking job has cost me one slightly bent garage door handle. I do have some visual aids in the garage which get me fairly close, but these all rely on me aligning them to something in the car which means there’s tons of error due to parallax. I can do better than this…

So I decided to use a sensor to detect my distance and tell me when I had reached the perfect distance for parking. There are many options, but I wanted a fairly fast sample rate (~10hz) and max range wasn’t a huge issue since the maximum distance I cared about was only the length of my garage. I decided to go with a cheap ultrasonic ranging sensor (HCSR04 Datasheet). It’s a very simple sensor to work with. You just pull the trigger line high for 10uS, the device then sends out an 8 cycle burst of sound at 40kHz. I then just wait for the ‘Echo’ line to go high and time how long it stays high. I can then calculate the distance that the sound burst was able to travel in that amount of time.

Getting distance measurements was fairly easy. I then needed to be able to see this distance value as I backed up my truck. For display, I used an Osepp LCD Keypad Shield I had been working with on another project. It has a blue background and nice bright characters. Driving an LCD with an Arduino is dirt simple. I just used the built-in LiquidCrystal library in Arduino and it worked like a charm.

An Arduino Uno, an ultrasonic sensor, and an Osepp display shield ready to be joined together like Voltron.

 

An Arduino Uno, an ultrasonic sensor, and an Osepp display shield ready to be joined together like Voltron.

The image above shows the modules I used for this project. I decided to solder some male->female jumper leads onto the LCD shield to make it easier to connect the ultrasound rangefinder and position it wherever I wanted during testing.

Utmost craftsmanship goes into testing the firmware and getting some real-world values for where I need to park my car.

 

Utmost craftsmanship goes into testing the firmware and getting some real-world values for where I need to park my car.

I crudely taped the unit to the wall at about the same height as my backup camera on my 4Runner. This allowed me to get some quick measurements of an ideal distance as seen by the sensor. Turns out, the perfect parking distance for my truck in my garage is 87cm from where I expertly taped this sensor.

Things I learned:

  • Arduino proves once again to be super easy to work with
  • The display looks great, but it is difficult to view through my backup camera
  • 87cm is the perfect parking distance to allow my hatchback to open and not hit my outdoor gear on the wall.

Next Steps:

  • Explore other display options (big 7-segment, colored LEDs, etc)
  • Explore different types of feedback (audio, mechanical)
  • Make the unit shutdown the display until it is needed.
  • Design a custom housing (either vacuum formed or 3D printed)

Here’s some rough sample code:

#define trigPin 3
#define echoPin 2

void setup() {
pinMode(trigPin, OUTPUT);
pinMode(echoPin, INPUT);
lcd.begin(16, 2);
lcd.setCursor(0,0);
lcd.print(“Parking Distance:”);
}

void loop() {
long duration, distance;
lcd.setCursor(7,1);
digitalWrite(trigPin, LOW);
delayMicroseconds(2);
digitalWrite(trigPin, HIGH);
delayMicroseconds(10);
digitalWrite(trigPin, LOW);
duration = pulseIn(echoPin, HIGH);
distance = (duration/2) / 29.1;
if (distance >= 300 || distance <= 0){
//TODO: Turn off Display
}else {
lcd.print(distance);
lcd.print(” “);
}
delay(100);
}

Vacuum forming in the kitchen

Warning: Always make sure your work area is properly ventilated and know the materials you are working with.

NOTE: This is post from about 2013 that I am just now getting around to publishing. Please excuse any dated references. 

I wanted to experiment with some vacuum forming at home and found a great Instructable (Here) by drcrash that I used as reference. I won’t replicate those instructions here because once you understand the basic idea, you really can create your vacuum forming rig however you’d like.

In a nutshell, you want a frame that can withstand high temperatures into which you will mount a piece of thermoplastic. For your base, you want an airtight (as much as possible) seal between your frame’s bottom and the orifice connected to your vacuum source. You heat the thermoplastic up until it is soft and pliable, then you pull the plastic over your desired object while the vacuum is running. You push your frame down against your seal and the air is evacuated around your part. The soft plastic is suctioned around your part, it cools, and you are left with a plastic shell of your desired object. That is all there is to it. The rest is just details about material selection, distributed airflow, proper sealing, and master part design considerations.

supplies
Screen frame material, weather stripping, metal binder clips, & metal corners for the frame.

The materials are fairly inexpensive, I found the Instructable linked above to be fairly accurate regarding costs. Honestly though, you could make this rig even cheaper. Again, it is a simple concept that can be elaborated upon as far as your desire/pocketbook allows. Hack-sawing aluminum screen frame material is NOT the most ideal way to miter your corners. Mine came out pretty sloppy and if I were to make more frames, I’d use a band-saw with a jig.

metal frame
Metal frame all ready to go.

Regardless of the pain that was my hack-sawing adventure, the frame still came out fairly good. Not a perfect frame by any means, but it pulls just fine in the final rig.

Full assembly of vacuum forming rig
Vacuum forming base on stands with vacuum hose attached.

This is the entire rig fully assembled in my garage before it made its way into my kitchen for the actual vacuum forming process. I have a sample piece of plastic loaded into the frame ready to go. The hose coming out the bottom leads to my shop vac.

Vacuum forming base
Vacuum forming base with small, 3D printed shape over which the material will be pulled.

The photo above shows the small 3D printed part I prepped to be pulled. I was using this small dome for an LED enclosure of a small lighting project I was working on. The part is stuck to a small platform with some putty and this small platform is then resting on some folded mesh screen material. This allows the air to flow all around the part. The vacuum port is located beneath this mesh.

Thermoplastic in the oven
Thermoplastic in the oven

Ahh, the smell of fresh plastic in the oven. I keep all windows and doors open while I’m doing this to make sure my kitchen is properly ventilated. When the plastic starts sagging uniformly, it’s time to start the pull.

 

Final Verdict

If you don’t mind the smell, or have a spare oven lying around, this method works quite well. I wouldn’t suggest this for any production parts, but for roughing out an early concept or just validating a design before you pay to have someone else pull it for you, this is a very easy to do project at home/in the lab. Everything comes down to how good your seal is and how much vacuum pressure you have. My parts came out decent enough for the molds I was working on, but there was definitely loss of detail in some finer features. I recommend any hobbyist / professional designer have this skill in their tool belt. It doesn’t have to be perfect, sometimes, you just need a vacuum formed part today.

 

Making a custom iPhone stand… WITH LASERS!

PRO LF CO2 Laser from Full Spectrum Laser
PRO LF CO2 Laser from Full Spectrum Laser

Recently, my access to a laser cutter has gone from hopeful, to occasional, to every (laser filled) day! We picked up a brand new Pro LF Series 36×24 CO2 Laser from Full Spectrum Laser here in Las Vegas. The build quality is solid and installation and calibration was a breeze.

After some initial requisite etching of Einstein’s face onto acrylic blocks, I decided to turn my attention to something more practical. I fired up Solidworks and used the specs provided by Apple for the iPhone 4S. I wanted to be able to prop up my phone while using Facetime, but not obstruct the screen. Using clear acrylic, I cut out a shape that allowed me to slide my iPhone through a precisely measured slot… Almost.

Laser-cut iPhone stand
iPhone 4S stand made of Acrylic. Designed in Solidworks and laser cut using the Pro LF Series CO2 laser from Full Spectrum Laser.

 

As it turns out, this was my first lesson in the challenges of laser cutting. Namely, the problem of the laser kerf, or the width of the beam as it cuts. This is directly analogous to the kerf width of a saw blade when cutting wood. Basically, you need to determine this width for you laser and the media your cutting, then adjust your vector paths accordingly. For internal, closed paths, you want to reduce (subtracting the kerf from the radius of a circle, for example) and for perimeter paths, you want to expand your design by the kerf width.

After some fairly simple adjustments, I was able to get a perfectly fitting iPhone 4S stand made of clear acrylic that can be adjusted to any position along the iPhone body and stays put using friction alone. Not a bad way to spend 30 mins to create something useful.

Oh, and here’s Einstein!

IMG_0215.JPG

Testing out the Makerbot Replicator 2x

The Replicator 2X from MakerBot
The Replicator 2X from MakerBot

We recently added a Replicator 2X from MakerBot to our prototyping arsenal. I definitely like the more refined chassis of this 3D printer and the build area increase is fantastic. I selected the 2X because we often like to work in ABS and the Replicator 2 is only capable of printing PLA. To quickly test the printer, I like to use a chair I designed in Solidworks as a quick evaluation of quality. There are some subtle filets, chamfers, and overhangs that are often difficult to print correctly. With the exception of some warping due to a temperature gradient on our print bed, the chair came out great. I’m really looking forward to putting this machine through its paces.

3D Printed Chairs
The blue chair was printed using the Replicator 2X and the orange one was printed using a Thing-o-matic.