Files
HawkeyeVision/VisionBuilder.UI.IOCommander/Interfaces/IIOCommander.cs
2025-07-21 12:07:33 +02:00

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);
}