22 lines
673 B
Plaintext
22 lines
673 B
Plaintext
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);
|
|
}
|
|
}
|