28 lines
678 B
C#
28 lines
678 B
C#
/*
|
|
* ICalibratable.cs
|
|
*
|
|
* Copyright © 2010
|
|
* Diversified Technical Systems, Inc.
|
|
* All Rights Reserved.
|
|
*/
|
|
|
|
namespace DTS.Common.DAS.Concepts
|
|
{ ///
|
|
/// <summary>
|
|
/// Representation of the ability to calibrate.
|
|
/// </summary>
|
|
///
|
|
public interface ICalibratable
|
|
{ //
|
|
// Properties required for rudimentary calibration.
|
|
//
|
|
string SerialNumber { get; set; }
|
|
double Sensitivity { get; set; }
|
|
double BatteryVolts { get; set; }
|
|
double VddVolts { get; set; }
|
|
double SignalConditioningVolts { get; set; }
|
|
|
|
// access for generic attributes.
|
|
}
|
|
}
|