ecs-1252 Fixed missing feedbacks in BridgeControllers for StatusSign and C2nRts. Added Name feedbacks for same.

This commit is contained in:
Trevor Payne
2020-01-31 11:08:44 -06:00
parent 4361fe6186
commit 0724ec06eb
4 changed files with 31 additions and 4 deletions

View File

@@ -6,7 +6,8 @@ namespace PepperDash.Essentials.Bridges
{
public class StatusSignControllerJoinMap:JoinMapBase
{
public uint IsOnline { get; set; }
public uint IsOnline { get; set; }
public uint Name { get; set; }
public uint RedLed { get; set; }
public uint GreenLed { get; set; }
public uint BlueLed { get; set; }
@@ -27,6 +28,10 @@ namespace PepperDash.Essentials.Bridges
GreenLed = 3;
BlueLed = 4;
//string
Name = 1;
OffsetJoinNumbers(joinStart);
}