da6b7ec55f
Working on routines to get and set the date and time in the handbox.
16 lines
391 B
C#
16 lines
391 B
C#
using System;
|
|
using ASCOM.Utilities.Interfaces;
|
|
|
|
namespace ASCOM.MeadeAutostar497.Controller
|
|
{
|
|
public interface ITelescopeController
|
|
{
|
|
ISerial SerialPort { get; set; }
|
|
string Port { get; set; }
|
|
bool Connected { get; set; }
|
|
|
|
string CommandString(string command, bool raw);
|
|
bool Slewing { get; }
|
|
DateTime utcDate { get; set; }
|
|
}
|
|
} |