[WIP] Status bar

This commit is contained in:
2026-09-09 15:41:46 +02:00
parent 3c97d974b5
commit 00100a7dc2
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);
}