c2ebe329c5
Added support for setting the guide rate on the LX200GPS (untested)
31 lines
743 B
C#
31 lines
743 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Net.NetworkInformation;
|
|
using System.Text;
|
|
|
|
namespace ASCOM.Meade.net
|
|
{
|
|
public static class TelescopeList
|
|
{
|
|
#region Autostar 497/Audiostar
|
|
|
|
public readonly static string Autostar497 = "Autostar";
|
|
|
|
//Autostar/Audiostar firmware revisions
|
|
public readonly static string Autostar497_30Ee = "30Ee";
|
|
public readonly static string Autostar497_31Ee = "31Ee";
|
|
public readonly static string Autostar497_43Eg = "43Eg";
|
|
|
|
#endregion
|
|
|
|
#region LX200GPS
|
|
|
|
public readonly static string LX200GPS = "LX2001";
|
|
|
|
public readonly static string LX200GPS_42G = "4.2G";
|
|
|
|
#endregion
|
|
}
|
|
}
|