Files
HawkeyeVision/VisionBuilder.UI.IOCommander/Interfaces/IIOCommanderDebugViewService.cs
2025-07-19 15:57:59 +02:00

8 lines
250 B
C#

namespace VisionBuilder.UI.IOCommander.Interfaces;
public interface IIOCommanderDebugViewService
{
public void SetInputPinStatus(int pin, bool state);
public void SetOutputPinStatus(int pin, bool state);
public void ShowDebugView();
}