From 0f3f42b652a8b31632aeee9dece18427ba134886 Mon Sep 17 00:00:00 2001 From: atef Date: Wed, 19 Mar 2025 11:24:02 +0100 Subject: [PATCH] Change the private set to set for the Digitaloutput0 --- csharp/Lib/Devices/Amax5070/Amax5070Registers.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csharp/Lib/Devices/Amax5070/Amax5070Registers.cs b/csharp/Lib/Devices/Amax5070/Amax5070Registers.cs index 0d6615f4e..8803abb29 100644 --- a/csharp/Lib/Devices/Amax5070/Amax5070Registers.cs +++ b/csharp/Lib/Devices/Amax5070/Amax5070Registers.cs @@ -8,7 +8,7 @@ namespace InnovEnergy.Lib.Devices.Amax5070 [AddressOffset(-1)] public class Amax5070Registers { - [Coil(1)] public Boolean DigitalOutput0 { get; private set; } + [Coil(1)] public Boolean DigitalOutput0 { get; set; } [Coil(2)] public Boolean DigitalOutput1 { get; private set; } [Coil(3)] public Boolean DigitalOutput2 { get; private set; } [Coil(4)] public Boolean DigitalOutput3 { get; private set; }