c2ebe329c5
Added support for setting the guide rate on the LX200GPS (untested)
14 lines
325 B
C#
14 lines
325 B
C#
namespace ASCOM.Meade.net
|
|
{
|
|
public static class DoubleExtensions
|
|
{
|
|
public static bool InRange(this double value, double low, double high)
|
|
{
|
|
if (value < low)
|
|
return false;
|
|
if (value > high)
|
|
return false;
|
|
return true;
|
|
}
|
|
}
|
|
} |