Finished GlsOccupancySensorBaseControllerBridge to handle both single and dual technology sensors.

This commit is contained in:
Neil Dorin
2019-09-17 11:12:00 -06:00
parent 1257dde4ce
commit c7b813447c
3 changed files with 70 additions and 11 deletions

View File

@@ -158,6 +158,11 @@ namespace PepperDash.Essentials.Bridges
(device as DigitalLogger).LinkToApi(Eisc, d.JoinStart, d.JoinMapKey);
continue;
}
else if (device is PepperDash.Essentials.Devices.Common.Occupancy.GlsOccupancySensorBaseController)
{
(device as PepperDash.Essentials.Devices.Common.Occupancy.GlsOccupancySensorBaseController).LinkToApi(Eisc, d.JoinStart, d.JoinMapKey);
continue;
}
}
}