Files
MeadeGeneric/MeadeAutostar497/Controller/ITelescopeController.cs
T
ColinD c0c0bedbba Added support for parking the scope
Added support for reading the scope Azimuth
2019-05-02 16:03:24 +01:00

22 lines
599 B
C#

using System;
using ASCOM.DeviceInterface;
namespace ASCOM.MeadeAutostar497.Controller
{
public interface ITelescopeController
{
string Port { get; set; }
bool Connected { get; set; }
bool Slewing { get; }
DateTime utcDate { get; set; }
double SiteLatitude { get; set; }
double SiteLongitude { get; set; }
AlignmentModes AlignmentMode { get; set; }
bool AtPark { get; }
double Azimuth { get; }
void AbortSlew();
void PulseGuide(GuideDirections direction, int duration);
void Park();
}
}