mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-11 10:45:00 +00:00
29 lines
728 B
C#
29 lines
728 B
C#
using Crestron.SimplSharpPro;
|
|
using Crestron.SimplSharpPro.ThreeSeriesCards;
|
|
|
|
namespace PepperDash.Essentials.Core.CrestronIO.Cards
|
|
{
|
|
public class C3Ir8Controller:C3CardControllerBase, IIROutputPorts
|
|
{
|
|
private readonly C3ir8 _card;
|
|
|
|
public C3Ir8Controller(string key, string name, C3ir8 hardware) : base(key, name, hardware)
|
|
{
|
|
_card = hardware;
|
|
}
|
|
|
|
#region Implementation of IIROutputPorts
|
|
|
|
public CrestronCollection<IROutputPort> IROutputPorts
|
|
{
|
|
get { return _card.IROutputPorts; }
|
|
}
|
|
|
|
public int NumberOfIROutputPorts
|
|
{
|
|
get { return _card.NumberOfIROutputPorts; }
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
} |