Page 1 of 1

Single star AF and Multistar autoguiding?

Posted: 25 Feb 2022, 17:15
by Dunmunro
Is it possible to write a script that calls single star auto-focus and multi-star autoguiding?

It seems that these two methods can't be used together.

Re: Single star AF and Multistar autoguiding?

Posted: 25 Feb 2022, 23:32
by Iver
Camera.Autofocus

Guider.FullFrameAutoguide

Re: Single star AF and Multistar autoguiding?

Posted: 26 Feb 2022, 04:52
by Iver
Maybe this is more what you wanted.

Guider.FullFrameAutoguide
pause (10) ' (this is where you would insert image sequence)
Guider.StopAutoguide
Camera.Start (1)
Camera.Wait
Camera.Autofocus
Guider.FullFrameAutoguide

Re: Single star AF and Multistar autoguiding?

Posted: 26 Feb 2022, 09:08
by Dunmunro
Iver wrote:
26 Feb 2022, 04:52
Maybe this is more what you wanted.

Guider.FullFrameAutoguide
pause (10) ' (this is where you would insert image sequence)
Guider.StopAutoguide
Camera.Start (1)
Camera.Wait
Camera.Autofocus
Guider.FullFrameAutoguide

Thanks, I'll give that a try.