iocommander input and virtual input

This commit is contained in:
meelstorm
2025-07-21 12:07:33 +02:00
parent cd70088d9a
commit e761b24c95
21 changed files with 418 additions and 21 deletions

View File

@@ -0,0 +1,10 @@
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);
}