As a potentially new user, I am wondering if there is an option to set a custom park position for the scope to park to when a sequence is finished. I need to be able to identify a custom park to be able to close my obs roof.
This needs to be done at your mount level, not with SGP. What mount are you using?
BTW, if you list your equipment in your āAbout Meā section of your profile, when we click on your avatar weāll be able to see what equipment you are using.
Oh, and welcome to SGP!
I know for Celestron you need the v6 drivers of ASCOM, but its still unclear to me how to do that with the newer drivers.
You should be able to use the script found in this post to set your mountās park position. Currently we donāt have a button to do this in SGP.
Thanks,
Jared
Thanks for the replies - I use an Avalon mount, which is the same ascom drivers as the EQ5/6.
Iāll look into the script - but Iām not a very technical person so Iām not sure how Iāll go with that. Would it be something that would be considered to add to the software? SGPro is being touted as a remote solution, so many folks who use it would surely benefit from this. I know of many people who need to set a custom park to be able to close their obs roof.
EDIT - Sadly the script is now showing / available in the post you link to.
Swag,
I think the going in argument for SGP is that they handle the sequencing and aiming⦠the drivers handle the rest. Gemini 2 has the custom home position built into the ASCOM driver⦠Iād pursue it with the manufacturer.
OK thanks. Iāll drop Skywatcher a line.
You may try doing this from a planetarium application. SGP just doesnāt expose a button to set the park position (as weāre running out or real-estate on the telescope control panel). It is likely available in other applications and possibly even the mountās ASCOM driver.
Thanks,
Jared
Mike, just create and run a vbscript. Here is mine (written for me by Chris R - I barely even know what a script is!):
'set c = CreateObject(āASCOM.Utilities.Chooserā)
'c.DeviceType=āTelescopeā
'id = c.Choose(āASCOM.Celestron.Telescopeā)
set scope = CreateObject(āASCOM.Celestron.Telescopeā)
scope.Connected = true
MsgBox "Move the mount to the Park position and press OK to save the position. ", 0, "Set Park Position"
scope.SetPark
Msgbox āPark Position Setā
Any problems, just let me know.
Kevin
Hello ,
can i use this script also for my EQ6?
i have no clou about scriptingā¦its an āblack boxā 2me
Werner
I donāt know. I know thereās some relationship between Celestron and Synta, but I donāt know if the script will work. I doubt it could hurt to try it, as long as youāre ready to abort the slew when you test it.
Kevin
Hi Kevin,
ok then i will set the Park after an sequence from EQMod after itā¦thx
If you are using EQMOD, you can set the park position and all parking settings in the EQASCOM window.
Hi naavis,
i set it in the EQAscom ā¦but SGpro will park only in -----2home Position not in my "to the zenith "positionā¦
I found this too Werner after responding to Swag72 thinking this was the solution, only to find it wasnāt (Sara had tried this too and had the same result).
Anyone found an answer to a custom park using EQASCOM? Does the script quoted above work? Iāve never written a script and wouldnāt know where to start.
Barry
Did anyone ever come up with a solution to the park problem?
Never found a solution to this using EQMOD Martin.
In EQMOD I allow it to park to itās home position, then in the morning just tell it to park to roof close. No good if you are pursing automation as a goal. If thatās the case, then I guess that SGP isnāt the answer for you - Shame as itās good.
From a quick look itās possible to set different park positions in EQMOD but their ASCOM Park command only uses the default park at the home position.
However if the ASCOM SetPark command is used EQMOD will use that.
The script I posted used the Celestron driver, this is modified so it is generic:
set c = CreateObject("ASCOM.Utilities.Chooser")
c.DeviceType="Telescope"
id = c.Choose("")
set scope = CreateObject(id)
scope.Connected = true
if scope.CanPark then
MsgBox "Move scope to the park position and press OK"
scope.SetPark
Msgbox "Park position set"
else
MsgBox "Park not implemented"
end if
Jared, Ken, it may be worth incorporating this in SGP somewhere. If you use Park it wouldnāt be a bad idea to allow it to be set up.
Chris
FWIW. I control my mount through the POTH hub which seems to have its own defined park position. With the scope in the park position I want I go into setup and click āSet Parkā in the scope connection box. SGP always parks to the āPOTH positionā regardless of the EQMOD park setting.
Paul