Skip to content

Commit

Permalink
Fix DptBoolean serialization
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisTTian667 committed Mar 19, 2023
1 parent 7e70733 commit f6a6329
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Knx/DatapointTypes/Dpt1Bit/DptBoolean.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ namespace Knx.DatapointTypes.Dpt1Bit;
[DatapointType(1, 2, Unit.TrueFalse, Usage.General)]
public class DptBoolean : Dpt1Bit
{
private DptBoolean()
{

}

public DptBoolean(byte[] payload)
: base(payload)
{
Expand Down

0 comments on commit f6a6329

Please sign in to comment.