init
This commit is contained in:
21
Common/DTS.Common/Interface/Hardware/IDASMonitorInfo.cs
Normal file
21
Common/DTS.Common/Interface/Hardware/IDASMonitorInfo.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user