Ecs-823 Implement Essentials Light Bridge

WHAR-1441 Add Lutron Temp Bridge
WHAR-1401 Finish testing Lighting Controls
This commit is contained in:
Jason T Alborough
2018-08-27 17:24:53 -04:00
parent daf44ae797
commit 1534433949
3 changed files with 33 additions and 9 deletions

View File

@@ -47,6 +47,11 @@ namespace PepperDash.Essentials {
Debug.Console(2, "Launch essentialstvone");
return new EssentialsTVOne(key, name, properties);
}
else if (typeName == "essentialslighting")
{
Debug.Console(2, "Launch essentialslighting");
return new EssentialsLightsBridge(key, name, properties);
}
return null;
}
}