Files
MeadeGeneric/MeadeAutostar497/Controller/ITelescopeController.cs
T
2019-05-02 00:31:54 +01:00

18 lines
466 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; }
void AbortSlew();
void PulseGuide(GuideDirections direction, int duration);
}
}