From 9ecb14e2a520ade8920e25fa8621be375a9edefb Mon Sep 17 00:00:00 2001 From: atef Date: Fri, 2 Aug 2024 13:40:57 +0200 Subject: [PATCH] Add reading active registers under Voltages classes --- csharp/Lib/Devices/Trumpf/TruConvertAc/Status/Voltages.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/csharp/Lib/Devices/Trumpf/TruConvertAc/Status/Voltages.cs b/csharp/Lib/Devices/Trumpf/TruConvertAc/Status/Voltages.cs index feb1ce640..d45a6fe63 100644 --- a/csharp/Lib/Devices/Trumpf/TruConvertAc/Status/Voltages.cs +++ b/csharp/Lib/Devices/Trumpf/TruConvertAc/Status/Voltages.cs @@ -5,6 +5,7 @@ public class Voltages { public InternVoltages Intern => new(_Self); public ExternVoltages Extern => new(_Self); + public ActiveVoltages Active => new(_Self); internal Voltages(AcDcRecord self) => _Self = self; private readonly AcDcRecord _Self;