60 lines
1.6 KiB
C#
60 lines
1.6 KiB
C#
///
|
|
/// Copyright (c) 2013-2016 Sensus Metering Systems
|
|
///
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Xml.Serialization;
|
|
using TBF.BenchControl.Generic;
|
|
|
|
namespace TBF.BenchControl.Elde.TempMeter
|
|
{
|
|
public class TempMeterCfg : ComponentCfgBase, IChildComponentCfg
|
|
{
|
|
public static XmlSerializer Serializer = XmlSerializer.FromTypes(new[] { typeof(TempMeterCfg) })[0];
|
|
protected override XmlSerializer GetSerializer() { return Serializer; }
|
|
|
|
public IComponentCfgCtrl GetControl() { return new TempMeterCfgCtrl(); }
|
|
|
|
///
|
|
/// Serialized parameters
|
|
///
|
|
public int Idx0; /// 0..7
|
|
public double A1;
|
|
public double A2;
|
|
public double A3;
|
|
public double A4;
|
|
public double A5;
|
|
public double DefaultTemperature;
|
|
|
|
/// Private parameterless constructor invoked by all other (public) constructors
|
|
TempMeterCfg()
|
|
{
|
|
Name = "T";
|
|
ParentName = "CB";
|
|
Idx0 = 0;
|
|
A1 = 0;
|
|
A2 = 0;
|
|
A3 = 0;
|
|
A4 = 0;
|
|
A5 = 0;
|
|
DefaultTemperature = 20.0;
|
|
}
|
|
|
|
public TempMeterCfg(IComponentFactory factory)
|
|
: this()
|
|
{
|
|
this.Factory = factory;
|
|
}
|
|
|
|
public string ToString(int i)
|
|
{
|
|
return string.Format("Name={0}, Parent={1}, Idx0={2}, A1={3}, A2={4}, A3={5}, A4={6}, A5={7}, Default={8}",
|
|
Name,
|
|
(string.IsNullOrEmpty(ParentName) ? "-" : ParentName),
|
|
Idx0,
|
|
A1, A2, A3, A4, A5, DefaultTemperature);
|
|
}
|
|
}
|
|
}
|