NICE!
Is that magic lantern you're running too?
You should make them up and flog them, not all of us have your ninja fabrication skills
Yeah ML. Its very good, especially for video focusing and every other function it adds!
sounds like a good plan, so can you give me/us some info on what electronics exactly you went for?
Sorry only just seen the replies.
- I'm running an Arduino UNO R3, with a 16x2 LCD and 6 push buttons (L,R,U,D,Select,Reset)
- Using a 2A Stepper Motor Driver with 1/16th Microstepping support (200step motor becomes 3200step)
- NEMA17 1.2A Stepper Motor (4v) with enough holding torque to support the weight of the camera when using it at steep angles
- Small custom circuit using an Optocoupler for firing the camera shutter via the N3 connector (optocoupler is there to protect the camera from my circuit/Arduino)
- Using a external flash cable back from the camera into a digital input on the Arduino (so I can calculate the delay between the shutter firing and the shutter actually opening - usually between a 30-50millisecond delay) - basically allowing accurate control of shutter speed from the code rather than setting it on the camera beforehand.
- All running from a YUASA 12v 7aH alarm battery
With regards to the code on the Arduino it helps if you have done C before, if not you may struggle to pick it up. Luckily I've done quite a few (web) languages and most are very similar with regards to syntax, but it still took a bit of messing about.
I ended up creating two modes for now, one like in the video where I can do video runs at various speeds in either direction (does not do anything with the shutter input). The other mode is for timelapse where I can set the total run duration, amount of movement per shot, or number of shots, and shutter speed.
Eventually when I can be bothered doing the maths/code I will program some exposure ramping into the code, so you can set a start exposure and end, with a specific curve (for doing sunrise/sunset) - this is where the flash trigger input comes in as you would need to accurately know how long the shutters been open for without the variable delay the Canons seem to have.
The Magic Lantern firmware has its own exposure ramping menu, which gives good results when set up right, but getting that timed right with the movement isn't easy, as it gives you way of setting when the camera should be moving - this is why you need the movement/shutter all in one program.
Hope that helps.....