Add SlewSettleTime and IsLongFormat to SharedResources interface

Also ensure that digit precision is set during initialisation
This commit is contained in:
Sebastian Godelet
2021-06-12 20:09:51 +10:00
parent bdbd206a54
commit 6c769f3649
5 changed files with 110 additions and 24 deletions
+7 -3
View File
@@ -509,10 +509,14 @@ namespace ASCOM.Meade.net
/// Start with <see cref="PierSide.pierUnknown"/>.
/// As we do not know the physical declination axis position, we have to keep track manually.
/// </summary>
public static PierSide SideOfPier { get; set; } = PierSide.pierUnknown;
public static PierSide SideOfPier { get; internal set; } = PierSide.pierUnknown;
public static double? TargetRightAscension { get; set; }
public static double? TargetRightAscension { get; internal set; }
public static double? TargetDeclination { get; set; }
public static double? TargetDeclination { get; internal set; }
public static short SlewSettleTime { get; internal set; }
public static bool IsLongFormat { get; internal set; }
}
}