Started on DgeController

This commit is contained in:
Neil Dorin
2019-06-28 08:20:06 -06:00
parent 5c923e66ec
commit ea2d573ab3
2 changed files with 6 additions and 1 deletions

View File

@@ -65,6 +65,11 @@ namespace PepperDash.Essentials
Panel = new Tsw1052(id, Global.ControlSystem);
else if (type == "tsw1060")
Panel = new Tsw1060(id, Global.ControlSystem);
else if (type.Contains("dge"))
{
// TODO: Figure out how to get the trilist from a DgeController device
//Panel =
}
else
{
Debug.Console(0, this, Debug.ErrorLogLevel.Notice, "WARNING: Cannot create TSW controller with type '{0}'", type);