Files
MeadeGeneric/MeadeAutostar497/Controller/ITelescopeController.cs
T
ColinD dc2a24ad25 Switched the serial port over to using the .net frameworks serial port.
Extracted the serial port into it's own class and created a simpler command processing mechanism.
2019-04-29 23:29:57 +01:00

15 lines
333 B
C#

using System;
using System.IO.Ports;
namespace ASCOM.MeadeAutostar497.Controller
{
public interface ITelescopeController
{
ISerialProcessor SerialPort { get; set; }
string Port { get; set; }
bool Connected { get; set; }
bool Slewing { get; }
DateTime utcDate { get; set; }
}
}