mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-13 12:37:07 +00:00
add constructor for testing concept
This commit is contained in:
parent
6cd686ec7c
commit
9732da7a8a
1 changed files with 7 additions and 2 deletions
|
|
@ -12,12 +12,17 @@ namespace PepperDash.Essentials.Core.Bridges
|
||||||
|
|
||||||
[JoinName("Relay")]
|
[JoinName("Relay")]
|
||||||
public JoinDataComplete Relay = new JoinDataComplete(new JoinData() { JoinNumber = 1, JoinSpan = 1 },
|
public JoinDataComplete Relay = new JoinDataComplete(new JoinData() { JoinNumber = 1, JoinSpan = 1 },
|
||||||
new JoinMetadata() { Label = "Device Relay State Set / Get", JoinCapabilities = eJoinCapabilities.ToFromSIMPL, JoinType = eJoinType.Digital });
|
new JoinMetadata() { Description = "Device Relay State Set / Get", JoinCapabilities = eJoinCapabilities.ToFromSIMPL, JoinType = eJoinType.Digital });
|
||||||
|
|
||||||
|
|
||||||
public GenericRelayControllerJoinMap(uint joinStart)
|
internal GenericRelayControllerJoinMap(uint joinStart)
|
||||||
: base(joinStart, typeof(GenericRelayControllerJoinMap))
|
: base(joinStart, typeof(GenericRelayControllerJoinMap))
|
||||||
{
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public GenericRelayControllerJoinMap(uint joinStart, Type type) : base(joinStart, type)
|
||||||
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue