io commander

This commit is contained in:
meelstorm
2025-07-19 15:57:59 +02:00
parent 40d74d6da6
commit cd70088d9a
46 changed files with 2198 additions and 28 deletions

View File

@@ -0,0 +1,16 @@
using System.ComponentModel;
using System.Globalization;
namespace VisionBuilder.UI.IOCommander;
public class IOCommanderPinAction
{
public int Pin { get; set; }
public bool Low { get; set; }
public bool Pulse { get; set; }
public override string ToString()
{
return $"Pin: {Pin}, {(Low?"Low":"High")}, Pulse: {Pulse}";
}
}