Page 9 of 12 FirstFirst ... 7891011 ... LastLast
Results 81 to 90 of 116

Thread: More mechanical wooden silliness

  1. #81
    Join Date
    May 2010
    Location
    OK
    Posts
    2

    Default

    I found this thread via Boing Boing..
    I started wondering how to do it with sliding leaves (as opposed to pivoting).. As such there'd never be a gap between the leaves. Same effect as having thin overlapping leaves.. Here the iris will completely shut.
    I don't have shopbot... but I do have Google's SketchUp..

    Since I don't have any way of actually building it, I didn't finish the design..
    There'd be another rotating ring with slots or rods (as the "steampunk" version) that pushes/pulls the leaves in their tracks/rails. Also, the leaves could be tongue and grooved..

    Thoughts?
    Attached Images Attached Images

  2. #82
    Join Date
    Mar 2009
    Location
    San Diego CA
    Posts
    318

    Default

    That's a cool idea Brad. do you mind if I play with it a bit?
    Do not follow where the path may lead. Go instead where there is no path and leave a trail.

  3. #83
    Join Date
    May 2010
    Location
    OK
    Posts
    2

    Default

    Not at all.
    I've attached the sketchup file in the .zip
    maybe it'll be of some use.

    My only "concern" about the design is how much friction/binding there might be with the sliding parts. It's almost hard to visualize how the pieces can slide with the others seemingly in the way all the time. My guess is this sliding design requires a bit more precision build than the pivot design.
    Attached Files Attached Files

  4. #84
    Join Date
    Aug 2004
    Location
    Northern , new jersey
    Posts
    220

    Default

    I cut this out of .125 fluorescent plastic 1.5 inch feed , made 4 passes with a 1/16" up spiral 3 flute bit , using the Brady 9/11 vac on 1 zone , all parts stayed in place (no tabs ) Thanks for sharing the file Chris ,
    Attached Images Attached Images

  5. #85
    Join Date
    Jan 2011
    Location
    Columbus, OH
    Posts
    7

    Default Scaled down + laser cut + servo

    Such a cool project - thanks To Chris et. al. for making the files available to the community.

    My version laser cut from 6mm birch plywood. Shellac to seal and protect then waxed. Stainless hardware.



    Write up:
    http://columbusideafoundry.com/?p=1370

    3 Videos:
    http://vimeo.com/user5664585

  6. #86
    Join Date
    Mar 2009
    Location
    San Diego CA
    Posts
    318

    Default

    That's fantastic Paul,

    I'd love a little detail on your Arduino set-up. I have a new Uno sitting on my bench that I have been intending to play with (so far I've managed to get the time to make it blink an LED) Several of my projects lend themselves well to motorization. Any jump starts on the sketches or wiring would be most welcome.

    Thanks
    Chris
    Do not follow where the path may lead. Go instead where there is no path and leave a trail.

  7. #87
    Join Date
    Jan 2011
    Location
    Columbus, OH
    Posts
    7

    Default Arduino = easy

    Chris-
    Setup was very straight forward.
    Two required changes to the wooden parts -
    1) the base plate was modified by adding the required mounting screws for the stepper as well as a clearance hole for the shaft.
    2) new drive gear with a 'D' shaped hole for the stepper shaft.
    Specifics will vary based on the stepper. Get your motor in hand(or at least the datasheet) before making the parts.

    For the electronics I used 3 off the shelf pieces:

    Arduino ($30.00):
    http://www.adafruit.com/index.php?ma...products_id=50

    Motor Shield ($19.50):
    http://www.adafruit.com/index.php?ma...products_id=81

    The stepper ($14.00):
    http://www.adafruit.com/index.php?ma...roducts_id=324

    You can reduce the cost by at least 1/2 by going with a Arduino clone kit and building your own motor controller. The schematics are all open source.
    I opted for speed of development vs. low cost.

    The code is very straight forward. All the 'heavy lifting' is done be the Adafruit Stepper library.

    The code couldn't be easier:
    [CODE]#include <AFMotor.h>

    // Tell the AFMotor library that the motor has 200 steps/rev and is connected to motor port 1
    AF_Stepper motor(200, 1);


    void setup() {
    // Set speed of stepper to 40 RPM
    motor.setSpeed(40);

    }

    void loop() { // just like it sounds - the following sequence will repeat as long as the CPU is running.

    // Rotate the stepper shaft 80 steps using both coils(higher torque)
    motor.step(80, FORWARD, DOUBLE);

    // Pause for 2 seconds
    delay(2000);

    // Rotate the stepper shaft 80 steps in the opposite direction
    motor.step(80, BACKWARD, DOUBLE);

    // Pause for 2 seconds
    delay(2000);
    }[/CODE]

  8. #88
    Join Date
    Mar 2009
    Location
    San Diego CA
    Posts
    318

    Default

    Sweet, thanks Paul.

    up till now I have been playing with small hobby motors, gearboxes and CR servos. Strange considering I use a CNC machine, but I have not thought to work with small steppers. Good to have a source for low cost small units. (though adafruit was sold out of the exact item, I was able to get a similar spec stepper from sparkfun once I thought to look for it)

    nice to get the code in the adafruit stepper library, That will simplify matters considerably.

    again thanks, though I have not had a chance to play with it yet, I can already see a ton of uses for this set-up.

    appreciate the info.

    Chris
    Do not follow where the path may lead. Go instead where there is no path and leave a trail.

  9. #89
    Join Date
    Mar 2011
    Location
    Oklahoma
    Posts
    4

    Default

    I love this. I want to build one myself. And I just might...

  10. #90
    Join Date
    Jul 2009
    Location
    Retired, Brigham City UT
    Posts
    147

    Default

    Hey Paul,
    Is there a Forum online for "Laser Engraving/cutting"?
    I have watched your video on cutting the Iris and very interested in perhaps buying a machine.

    George

Similar Threads

  1. mechanical iris
    By myxpykalix in forum ShopBotter Message Board
    Replies: 0
    Last Post: 03-11-2014, 05:58 PM
  2. mechanical iris with cut files
    By myxpykalix in forum ShopBotter Message Board
    Replies: 3
    Last Post: 09-29-2011, 10:46 PM
  3. mechanical iris
    By myxpykalix in forum ShopBotter Message Board
    Replies: 0
    Last Post: 08-21-2011, 02:33 PM
  4. Replies: 1
    Last Post: 01-05-2010, 11:19 AM
  5. Having serious mechanical issues
    By joelinkous in forum Archives2006
    Replies: 1
    Last Post: 10-23-2006, 08:40 AM

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •