openhab-addons/bundles/org.openhab.transform.bin2json
J-N-K 8e902f6324
Bump spotless to 2.35 and Eclipse Java Formatter to 4.26 (#14645)
Signed-off-by: Jan N. Klug <github@klug.nrw>
2023-03-21 21:03:05 +01:00
..
src/main Bump spotless to 2.35 and Eclipse Java Formatter to 4.26 (#14645) 2023-03-21 21:03:05 +01:00
NOTICE
pom.xml fix spotless after release (#14014) 2022-12-19 15:22:17 +01:00
README.md

Binary To JSON Transformation Service

Transforms the input by Java Binary Block Parser syntax.

See details about syntax from JBBP homepage

Example

Let's assume we have received string containing bytes in hexa string format 03FAFF and we want to convert binary data to JSON format. Binary data contains 3 bytes and strict data format is following byte a; byte b; ubyte c;.

Binary to JSON converter will return following result {"a":3,"b":-6,"c":255}

Usage as a Profile

Profiles are not supported by this transformation.