10 lines
227 B
C#
10 lines
227 B
C#
using System.Collections;
|
|
|
|
namespace VisionBuilder.UI.IOCommander.Interfaces;
|
|
|
|
public interface IIOCommander
|
|
{
|
|
BitArray PinState { get; }
|
|
event Action<int, bool> OnPinChanged;
|
|
void SetPins(int pin, bool state);
|
|
} |