Implementation of feature/glspartcn-partition-sensor

Resolves #270
This commit is contained in:
Jason DeVito
2020-06-30 10:06:39 -05:00
parent e8a8d481aa
commit 8f35d13d4b
25 changed files with 1154 additions and 642 deletions

View File

@@ -23,10 +23,10 @@ namespace PepperDash.Essentials.DM
public StringFeedback EdidPreferredTimingFeedback { get; protected set; }
public StringFeedback EdidSerialNumberFeedback { get; protected set; }
protected DmRmcControllerBase(string key, string name, EndpointReceiverBase device)
: base(key, name, device)
protected DmRmcControllerBase(string key, string name, EndpointReceiverBase sensor)
: base(key, name, sensor)
{
_rmc = device;
_rmc = sensor;
// if wired to a chassis, skip registration step in base class
PreventRegistration = _rmc.DMOutput != null;