using System;
namespace Xylem.Common.Hardware.WaterMeter.Genesis.GenesisConfig.Const
{
public static class MeterConfig
{
///
/// 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.
///
public const UInt16 CalibrationDefault = 15625;
///
/// Channels for calibration
///
public const Int32 CalibChannels = 3;
///
/// Maximum calibration value in percent
///
public const Double DefaultMaxCalibFactorTolerancePercent = 100.0;
}
}