Skip to content

Commit

Permalink
Small update in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
slybit committed Mar 14, 2024
1 parent d8d6ed1 commit 3d70167
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ main | Main level GA name if provided in ETS export, not presen
middle | ...
sub | ...
dpt | Datapoint type of GA if provided in ETS export, not present otherwise
val | Translated value of the KNX data (if DPT known through the ETS export), or
  | raw binary data as hex string (e.g., 0x07A4)
raw | "true" if value is a raw hex string, not present otherwise
val | Translated value of the KNX data (if DPT known through the ETS export), or empty
hex | HEX representation of the KNX data in case DPT is not known
raw | "true" if 'val' is empty and 'hex' is used, not present otherwise
response | "true" if this was a RESPONSE to a read request, not present otherwise

**Important:** The "value" of binary data is translated to "1" or "0" for all Datapoint Types in the DPT1 category.
Expand All @@ -78,7 +78,7 @@ Example of message object in case the ETS export contains no information about t
'dstgad' : '0/1/2',
'ts' : 1543434592311,
'lc' : 1543434590311,
'val' : '0x01',
'hex' : '0x01',
'raw' : 'true'
}
```
Expand Down

0 comments on commit 3d70167

Please sign in to comment.