mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-13 20:47:04 +00:00
Merge pull request #590 from PepperDash/hotfix/add-routing-interface
Update RoutingInterfaces.cs
This commit is contained in:
commit
504c21204f
1 changed files with 10 additions and 0 deletions
|
|
@ -92,6 +92,16 @@ namespace PepperDash.Essentials.Core
|
||||||
void ExecuteSwitch(object inputSelector, object outputSelector, eRoutingSignalType signalType);
|
void ExecuteSwitch(object inputSelector, object outputSelector, eRoutingSignalType signalType);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public interface IRoutingWithClear : IRouting
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Clears a route to an output, however a device needs to do that
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="outputSelector">Output to clear</param>
|
||||||
|
/// <param name="signalType">signal type to clear</param>
|
||||||
|
void ClearRoute(object outputSelector, eRoutingSignalType signalType);
|
||||||
|
}
|
||||||
|
|
||||||
public interface IRoutingNumeric : IRouting
|
public interface IRoutingNumeric : IRouting
|
||||||
{
|
{
|
||||||
void ExecuteNumericSwitch(ushort input, ushort output, eRoutingSignalType type);
|
void ExecuteNumericSwitch(ushort input, ushort output, eRoutingSignalType type);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue