[WIP] Status bar

This commit is contained in:
2026-08-19 10:04:36 +02:00
parent d303f0767a
commit 3c307da0ca
5 changed files with 68 additions and 6 deletions
+4
View File
@@ -34,6 +34,10 @@ namespace PamhagenSysCtrl.Helpers {
protected readonly T1 Plc;
public string PortName => Plc.PortName;
public T1.Status LastPlcStatus => Plc.LastStatus;
public T1Error LastPlcError => Plc.LastError;
public PamhagenPlc(string portName, Parity parity = Parity.Odd) {
Plc = new T1(portName, parity);
}