Help an astrophotographer???
astro11
Posts: 6
I hope I'm not too far off base asking here, but I would like some help with an 'application'.
I'm trying to 'refine' my home built remote telescope focuser. I currently use a 'gutted" servo(I know probably makes people cringe around here) basically as a motor. Speed is controlled w/ a simple PWM circuit. Since I only need fine speed control in 1 direction, to reverse direction I just reverse polarity w/ full 6 volts(I know I should probably use an H-bridge....more cringing and hence my question).
SO, I would like to improve this by having a continuous turn potentiometer or a rotary encoder (you tell me) connected to a remote servo mounted on the scope. (replacing the gutted one). movement of the pot or encoder would directly translate to movement of the servo. Needs to be continuous and bidirectional. would like to vary the ratio(course/fine focus). Connection could be with a long(30') wire OR better yet via WiFi to laptop that is already there doing other things. so box w/ potentiometer USB-->desktop--> wifi(or cat5) --->laptop-->usb controller-->servo
Is this possible? if so how?
Thank you...for letting me in your sandbox,
Kevin
I'm trying to 'refine' my home built remote telescope focuser. I currently use a 'gutted" servo(I know probably makes people cringe around here) basically as a motor. Speed is controlled w/ a simple PWM circuit. Since I only need fine speed control in 1 direction, to reverse direction I just reverse polarity w/ full 6 volts(I know I should probably use an H-bridge....more cringing and hence my question).
SO, I would like to improve this by having a continuous turn potentiometer or a rotary encoder (you tell me) connected to a remote servo mounted on the scope. (replacing the gutted one). movement of the pot or encoder would directly translate to movement of the servo. Needs to be continuous and bidirectional. would like to vary the ratio(course/fine focus). Connection could be with a long(30') wire OR better yet via WiFi to laptop that is already there doing other things. so box w/ potentiometer USB-->desktop--> wifi(or cat5) --->laptop-->usb controller-->servo
Is this possible? if so how?
Thank you...for letting me in your sandbox,
Kevin
Comments
By reading the value of the pot you would tell the servo to move one direction or the other. The further the pot is turned - the faster the servo would move.
Rich H
You have lots of options. BTW, your servo had a controller board inside which has PWM and an H-bridge already. If you're using a Stamp, you could just do a simple continuous rotation servo mod to it and control it in both directions at any speed. No external PWM controller required.
As far as control, you can use an encoder, or a stepper motor might be better for your app. If you're using a Stamp anyway, you can certainly drive a stepper with that.
Or if you're saying that you just want to turn a pot and have a remote servo slaved to that, it's even easier. No stamp required. You can just use a simple 556 "servo tester" circuit with a pot. Then you can control a standard servo's position (0 to 180 degrees) or a continuous rotation servo's speed & direction (along with stop) which I suspect might be all you need.
What are you comfortable with?
Edit: Rich beat me to it again!
IMHO JR makes a very nice servo, as does Hitec.... then futaba and airtronics. Some of the no-name Chinese stuff is cheap and appealing, but rather coarse.
P.S. I DO buy the no-name servos. They are great for foam planes, general hobby stuff and the like.
If there is a specific document or any other details that describes this type of application with some sample code that someone could point me toward that would be great ...I'm googled out...and admit I may be out of my league...at least for now till I play w/ this stuff a bit.
Thanks again,
-Phil
thanks,
-Phil
Looks like fun stuff, light years beyond my old radio shack days. Think I found a new hobby... My wife will love that
thanks again to all
This may be a moot point if you have a several thousand dollar mount however.
Just something to consider.
My plan is to try a cont. rotation servo first...if that doesn't work I'll try a stepper.
thanks again.
-Phil
From one astrophotographer to another:
I've motorized focusers for over 20 years on most of my home-built telescopes designed for astrophotography and CCD imaging. In the cases of the 40-inch and 50-inch telescopes, a remote focuser was mandatory. On the 12.5-inch Newtonian, it was one of the most useful add-ons.
Generally you want to design the system to handle the weight of the camera (and any guider, filters, etc.) The lighter the weight and the faster damping takes place. This is a great advantage. You can use either the continuous rotation server or the stepper motor. I have used both.
In my projects the servo is an advantage because it's lighter and easier for me to use (and costs less in my setups). The continuous rotation servo is easy to adapt. In fact, there's many programmable options (a lot of Boe-Bot programs will get you started) to drive it at different rates including start and stop ramping, limit blocks, ranges, slewing, ocular memory, and a host of other fine tune options which can be modified to suit your telescope.
You can program planets, Moon, DS, and a host of objects. Yes, you can drive beyond 360 degrees. The only concern is the torque required to turn the rack & pinion or friction focuser must match the servo capability. You should be OK with the SCT as their knobs normally move easily. The only difference is they often require a greater number of turns to achieve focus. This is where a set of parfocal oculars will be handy.
One advantage is I use a small hand held box and the cord isolates any hand vibrations from the telescope tube. I set variable speeds depending on the object and the setup. A pot is used to dial in the rates and two pushbuttons are for forward and reverse. A BASIC Stamp with PBASIC is ideal for this project. You can use a red LED and LCD for setting the programs.
Using a maestro USB controller (I know not parallax) a rotary encoder, an L293 and a stepper...motor rotation is exaclty the same as rotation of the encoder. Now I have to see if there is any vibration...shouldn't be an issue cuz I'm belt driven.
Thanks again for the input.