Adds DmChassicControllerBridge. Created JoinMapBase base class

This commit is contained in:
Neil Dorin
2018-09-25 17:19:53 -06:00
parent 780f7bc249
commit 339a4f8a62
5 changed files with 280 additions and 149 deletions

View File

@@ -11,6 +11,7 @@ using PepperDash.Core;
using PepperDash.Essentials.Core;
using PepperDash.Essentials.Core.Devices;
using PepperDash.Essentials.Core.Config;
using PepperDash.Essentials.DM;
namespace PepperDash.Essentials.Bridges
{
@@ -78,6 +79,10 @@ namespace PepperDash.Essentials.Bridges
(device as GenericComm).LinkToApi(Eisc, d.JoinStart, d.JoinMapKey);
}
if (device is DmChassisController)
{
(device as DmChassisController).LinkToApi(Eisc, d.JoinStart, d.JoinMapKey);
}
}
}