Files
MeadeGeneric/Meade.net/TelescopeList.cs
T
2019-09-30 22:14:34 +01:00

34 lines
1.0 KiB
C#

namespace ASCOM.Meade.net
{
public static class TelescopeList
{
#region Autostar 497/Audiostar
public static readonly string Autostar497 = "Autostar";
//Autostar/Audiostar firmware revisions
// ReSharper disable once InconsistentNaming
public static readonly string Autostar497_30Ee = "30Ee";
// ReSharper disable once InconsistentNaming
public static readonly string Autostar497_31Ee = "31Ee";
// ReSharper disable once InconsistentNaming
public static readonly string Autostar497_43Eg = "43Eg";
#endregion
#region LX200GPS
// ReSharper disable once InconsistentNaming
public static readonly string LX200GPS = "LX2001";
// ReSharper disable once InconsistentNaming
public static readonly string LX200GPS_42G = "4.2G";
#endregion
#region LX200EMC
// ReSharper disable once InconsistentNaming
public static readonly string LX200CLASSIC = ":GVP"; //GVP command is not supported!
#endregion
}
}