Ejemplo n.º 1
0
        public async Task <bool> SetParkPosition()
        {
            if (Telescope.CanSetPark && !Telescope.AtPark)
            {
                Logger.Trace($"Setting telescope park position to RA={Telescope.RightAscension}, Dec={Telescope.Declination}");
                await Task.Run(() => { Telescope.Setpark(); });

                return(true);
            }

            return(false);
        }