Adds control for DigitalLogger PDU Device

Adds EiscBridge for DigitalLogger PDU Device.
This commit is contained in:
Jason T Alborough
2018-12-03 22:47:49 -05:00
parent 895f49b888
commit 9a56f5bb49
8 changed files with 55 additions and 383 deletions

View File

@@ -11,6 +11,7 @@ using PepperDash.Core;
using PepperDash.Essentials.Core.Routing;
using Crestron.SimplSharpPro;
using Crestron.SimplSharpPro.EthernetCommunication;
using PepperDash.Essentials.Bridges;
namespace PepperDash.Essentials {
public class BridgeFactory {
@@ -52,6 +53,10 @@ namespace PepperDash.Essentials {
Debug.Console(2, "Launch essentialslighting");
return new EssentialsLightsBridge(key, name, properties);
}
else if (typeName == "eiscapi")
{
return new EiscApi(dc);
}
return null;
}
}