tbf/TBF/Rig/GenericDevices/IParallelOutput.cs
2021-10-26 19:38:09 +02:00

16 lines
323 B
C#

///
/// Copyright (c) 2019 Sensus Slovensko a.s.
///
using System;
using TBF.Rig.Generic;
namespace TBF.Rig.GenericDevices
{
public interface IParallelOutput : IComponent
{
IOperation SetOutputsOp(ushort outValue);
IOperation ShowBenchWaitingOp();
IOperation ShowBenchErrorOp();
}
}