mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-13 20:47:04 +00:00
Started on DgeController
This commit is contained in:
parent
5c923e66ec
commit
ea2d573ab3
2 changed files with 6 additions and 1 deletions
|
|
@ -65,6 +65,11 @@ namespace PepperDash.Essentials
|
||||||
Panel = new Tsw1052(id, Global.ControlSystem);
|
Panel = new Tsw1052(id, Global.ControlSystem);
|
||||||
else if (type == "tsw1060")
|
else if (type == "tsw1060")
|
||||||
Panel = new Tsw1060(id, Global.ControlSystem);
|
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
|
else
|
||||||
{
|
{
|
||||||
Debug.Console(0, this, Debug.ErrorLogLevel.Notice, "WARNING: Cannot create TSW controller with type '{0}'", type);
|
Debug.Console(0, this, Debug.ErrorLogLevel.Notice, "WARNING: Cannot create TSW controller with type '{0}'", type);
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
Subproject commit 82872ebb8e1093d1426466d301bc0613eac4354b
|
Subproject commit 69dd391d195819de8033b8ad1a5d2ea62f4de3f1
|
||||||
Loading…
Add table
Add a link
Reference in a new issue