Adds Edid and video resolution support for Dm Rmc over EiscApi bridge. Beginnings of Cec control

This commit is contained in:
Neil Dorin
2018-10-03 17:49:08 -06:00
parent a320eff13c
commit 3d6ce7534f
6 changed files with 106 additions and 20 deletions

View File

@@ -77,14 +77,22 @@ namespace PepperDash.Essentials.Bridges
if (device is GenericComm)
{
(device as GenericComm).LinkToApi(Eisc, d.JoinStart, d.JoinMapKey);
continue;
}
if (device is DmChassisController)
else if (device is DmChassisController)
{
(device as DmChassisController).LinkToApi(Eisc, d.JoinStart, d.JoinMapKey);
continue;
}
if (device is DmTxControllerBase)
else if (device is DmTxControllerBase)
{
(device as DmTxControllerBase).LinkToApi(Eisc, d.JoinStart, d.JoinMapKey);
continue;
}
else if (device is DmRmcControllerBase)
{
(device as DmRmcControllerBase).LinkToApi(Eisc, d.JoinStart, d.JoinMapKey);
continue;
}
}
}