Files
MeadeGeneric/MeadeAutostar497/Controller/ITelescopeController.cs
T

14 lines
286 B
C#

using System;
namespace ASCOM.MeadeAutostar497.Controller
{
public interface ITelescopeController
{
string Port { get; set; }
bool Connected { get; set; }
bool Slewing { get; }
DateTime utcDate { get; set; }
void AbortSlew();
}
}