Skip to content

Commit

Permalink
Merge pull request #271 from OpenKNX/fix/dpt13_int32t
Browse files Browse the repository at this point in the history
fixes the dpt13 converting
  • Loading branch information
thelsing authored Feb 12, 2024
2 parents 52b5780 + 50cde2c commit 969b4c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/knx/knx_value.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ int32_t KNXValue::intValue() const
switch (_type)
{
case IntType:
return _value.shortValue;
return _value.ulongValue;
case BoolType:
case UCharType:
case UShortType:
Expand Down

0 comments on commit 969b4c4

Please sign in to comment.