Log in

View Full Version here: : How to convert old EQ mount to computer control?


originaltrilogy
10-01-2013, 09:52 AM
I have old Astro Optical EQ mount with clock drive. Is very strong but I have to manually correct guide which is okay but gets sometimes boring!

I have seen bartel system and scitech system etc.

Is it possible to convert mount to computer control for guiding?

It has slow fast control on handpiece, I am thinking I could control that with relay, DEC has a manual control that maybe could use servo to adjust?

I am new to this things but want to learn.

Could softwares be used to keep guide star centred by emulating my hand movements on the controller?

alistairsam
10-01-2013, 10:43 AM
Hi Petr,

That's what ST4 autoguiding is. It sends corrections to your mount by emulating the button depress.
It should be quite straightforward depending on your model.

you might have to do some soldering to wire it to an RJ11/45 connector so the guide camera can connect to it. but once its done, it should work well.

if you don't have a guide camera with an ST4 port, you can get the shoestring astronomy webcam adaptors that provide an ST4 interface.
are you able to solder/understand/test simple circuits?
Please post some info about your mount with pics of your hand controller

this explains the mod for EQ3 mounts. you'll have to check if yours is similar.
http://www.store.shoestringastronomy.com/eq_mod.pdf


Cheers

originaltrilogy
10-01-2013, 11:34 AM
Wow.
Thank you!

Controller looks like picture. Can only speed up or slow down, not go backwards.

originaltrilogy
10-01-2013, 11:35 AM
Yes I can build and understand circuits and make PC board.

Mount is big old astro optical mount. Can take pictures on weekend.

RA has a flexible whip manual control as well as clock drive and speed up slow down with hand controller in picture.

DEC only has very small amount of control with flexible whip manual control, it does not have motor on DEC.

It looks almost same as Hugh's mount:
http://www.iceinspace.com.au/forum/attachment_browse.php?a=129927

alistairsam
10-01-2013, 12:02 PM
ok, that's completely different from the eq3 hand controllers in terms of what can be done.
can you confirm if the speed controller dial is a simple pot?

What comes to mind is a simple microcontroller based approach that can either increase or decrease the resistance value of the pot based on the ST4 pulse. I've built a similar unit to interpret the ST4 pulses.

The ST4 commands are RA+, RA-, Dec+, Dec-. meaning speed up RA, slow down RA, same with Dec.
since what you have is a speed controller, you can do the same thing.

it goes like this. the ST4 port of a guidecamera or USB-ST4 has 4 pins that are normally held high (+5v). This is after an opto-coupler, so its safe. It is controlled via the Phd autoguiding software ( you set mount type to "on-camera").
So when the guide star drifts east, it pulls down the RA- pin asking the mount to slow down, or the RA+ pin if it drifts west asking it to speed up.
Phd determines the length of the pulse based on its calibration.

you then connect the 4 pins to an MCU (I use picaxe as its very simple to use). The MCU will then monitor the state of the 4 inputs. when a pin goes low, it either raises or lowers an output, your choice, and this can then trigger an opto-coupler that switches a fixed or variable resistor that is across each side of the potentiometer's centre tap or in series to the centre tap. or you could use a digital potentiometer.
you'll have to experiment for the actual resistance value or you could measure the effective resistance after turning your knob by your normal amount and then calculate.

The idea is rather than you rotating the dial, which just varies the resistance, you add or remove a resistor that's either in-line or in parallel to the pot.

Although it sounds complicated, you should be able to assemble this in on a general purpose board and the whole thing should cost you under $30.

if using picaxe, I'd recommend the 20M2 as it has sufficient input and output pins. opto-couplers are only a few dollars each.
i'll see if i can draw up a circuit. I have already written the code for the ST4 interface for the picaxe, so let me know if you need that.
Cheers

originaltrilogy
10-01-2013, 12:12 PM
Thank You!

It is a potentiometer inside, not sure how buttons are used.

It will take me a while to detailed translate your response to my brain but I understand the idea you are saying.

As long as my alignment is good then RA guiding should be enough most times yes?

Mainly for planetary and hyperstar use (short subs) so might be okay.

alistairsam
10-01-2013, 12:20 PM
yes, as long as your polar alignment is good, you can get away with no Dec guiding.
btw, you need to turn off Dec guiding in phd and you'll need to monitor only the two RA pins.
what guide camera do you have?
you can use phd to drift align by disabling the guide outputs and monitoring drift after each adjustment.

originaltrilogy
10-01-2013, 12:43 PM
I have lodestar camera and am using OAG.

I also have mono camera with AO7 that I would like to use for full focal length photo, but not sure if mount will be accurate enough!

Telescope is C11.

Poita
10-01-2013, 02:19 PM
This guy went the whole hog with a similar mount
http://www.campingunderstars.com/equip.html

It might be worth a look, but would be a lot more money than Alistair's solution.

OzEclipse
10-01-2013, 07:28 PM
Petr,

I remember those old monsters! Our school bought one for the astronomy club. Memories!

This is probably a very old style of device that uses a timer chip like a 555. The combination of a fixed capacitor and the potentiometer resistance governs the timer speed which is adjusted for siderial (or other speeds) The push buttons either add in or subtract resistance to the timing circuit making the motor speed up or slow down.

Auto guiders as already noted are voltage switching devices. They won't switch resistors. You can do it but you'd have to add some sort of intermediate relay, that switches in those high/low resistors. Simplest low tech method is probably an old fashioned solenoid type relay that physically opens and closes mechanical switches that replace the push buttons or if you want to retain some manual control, hook them up in parallel after verifying the circuit is as I describe of course.

Joe

Barrykgerdes
10-01-2013, 08:01 PM
Sounds like an old Sampson Mount. Twenty years ago they were considered top but even the cheapest of the modern mounts will perform better. I think trying to computerise it will be a very frustrating exersize, even if you have access to machinery and are adept with electronics.

The "anolog" control device will need extensive design work to make it work with the output of an auto guider. Do you have a worm and worm wheel drive on both axes. If so can you fit stepper motors to the drives. If so you could use a control system like the Bartell's system.

Twenty years ago I tried to build a mount like that but fitting drives was such a problem even when I have all the necesary machines and tools was so frustrating. I had designed and built a "goto" stepper motor drive system that worked but never got it fitted to the mount. I eventually gave it up and bought a LX200.

Barry

Poita
10-01-2013, 09:01 PM
I had one of those RA boxes, it was hooked up to a clock drive C8.

This is what was inside the box:
http://www.iceinspace.com.au/forum/attachment_browse.php?a=119816

alistairsam
10-01-2013, 09:40 PM
I'd strongly advise against solenoids, not really required.
Hence my suggestion to use opto couplers as a digital switch. Easy and cost effective.

Or why not use a digital pot like this one
http://littlebirdelectronics.com/products/digital-potentiometer-10k

Replacing the motors with steppers would be good but very expensive as the appropriate gearheads for steppers are not that cheap. I've been down that road. Then you have the problem of an accurate controller for the stepper. I'd say that's a lot more complex.

I'll draw up a circuit and post shortly

Cheers

alistairsam
10-01-2013, 09:42 PM
Peter
Would you know If the circuit diagram for the controller is available somewhere?

Poita
11-01-2013, 10:13 AM
It was made by Astro Optical in Sydney, they would be the only place that may have one.

If I still had mine I could trace a diagram from the board.

There are a few people that have them in this thread:
http://www.iceinspace.com.au/forum/showthread.php?t=78211

Maybe they have more details.

Poita
11-01-2013, 10:15 AM
I think this discusssion may have the answers.

http://www.iceinspace.com.au/forum/showthread.php?t=72768