using System; namespace PepperDash.Essentials.Core.Bridges { /// /// Represents a IAnalogInputJoinMap /// public class IAnalogInputJoinMap : JoinMapBaseAdvanced { [JoinName("InputValue")] public JoinDataComplete InputValue = new JoinDataComplete(new JoinData { JoinNumber = 1, JoinSpan = 1 }, new JoinMetadata { Description = "Input Value", JoinCapabilities = eJoinCapabilities.ToSIMPL, JoinType = eJoinType.Analog }); [JoinName("MinimumChange")] public JoinDataComplete MinimumChange = new JoinDataComplete(new JoinData { JoinNumber = 2, JoinSpan = 1 }, new JoinMetadata { Description = "Minimum voltage change required to reflect a change", JoinCapabilities = eJoinCapabilities.ToFromSIMPL, JoinType = eJoinType.Analog }); /// /// Constructor to use when instantiating this Join Map without inheriting from it /// /// Join this join map will start at public IAnalogInputJoinMap(uint joinStart) : this(joinStart, typeof(IAnalogInputJoinMap)) { } /// /// Constructor to use when extending this Join map /// /// Join this join map will start at /// Type of the child join map protected IAnalogInputJoinMap(uint joinStart, Type type) : base(joinStart, type) { } } }