25 lines
752 B
C#
25 lines
752 B
C#
using System;
|
|
|
|
namespace Xylem.Common.Hardware.WaterMeter.Genesis.GenesisConfig.Const
|
|
{
|
|
public static class MeterConfig
|
|
{
|
|
/// <summary>
|
|
/// Calibration Factor on init from meter
|
|
/// Is also the factor to convert CalibrationFactors to readable number,
|
|
/// this is the default if the ProccessConfig.json file cannot be read.
|
|
/// </summary>
|
|
public const UInt16 CalibrationDefault = 15625;
|
|
|
|
/// <summary>
|
|
/// Channels for calibration
|
|
/// </summary>
|
|
public const Int32 CalibChannels = 3;
|
|
|
|
/// <summary>
|
|
/// Maximum calibration value in percent
|
|
/// </summary>
|
|
public const Double DefaultMaxCalibFactorTolerancePercent = 100.0;
|
|
}
|
|
}
|