22 lines
685 B
C#
22 lines
685 B
C#
|
|
using DTS.Common.Enums.DASFactory;
|
|||
|
|
|
|||
|
|
namespace DTS.Common.Interface.Hardware
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
public interface IDASMonitorInfo
|
|||
|
|
{
|
|||
|
|
string SerialNumber { get; }
|
|||
|
|
double[] TiltSensorCals { get; }
|
|||
|
|
short[] TiltSensorDataPre { get; }
|
|||
|
|
DFConstantsAndEnums.TiltAxes TiltAxes { get; }
|
|||
|
|
int AxisIgnored { get; }
|
|||
|
|
double MountOffsetAxisOne { get; }
|
|||
|
|
double MountOffsetAxisTwo { get; }
|
|||
|
|
string GetChannelName(int index);
|
|||
|
|
double GetOffsetTolerancemVLow(int index);
|
|||
|
|
double GetOffsetTolerancemVHigh(int index);
|
|||
|
|
void ReadFromFile(string path);
|
|||
|
|
void WriteToFile(string path);
|
|||
|
|
}
|
|||
|
|
}
|