Animatroller.Framework.Expander.Renard.Connect C# (CSharp) Method

Connect() public method

public Connect ( PhysicalDevice device ) : Renard
device PhysicalDevice
return Renard
        public Renard Connect(PhysicalDevice.INeedsDmxOutput device)
        {
            device.DmxOutputPort = this;

            return this;
        }

Usage Example

Example #1
0
 public void WireUp(Expander.Renard port)
 {
     port.Connect(new Physical.GenericDimmer(testLight1, 24));
 }