openhab-addons/bundles/org.openhab.transform.bin2json
Wouter Born 8a7a411ccc
Use Spotless sortpom plug-in (#18318)
Similar to openhab/openhab-core#4618

Signed-off-by: Wouter Born <github@maindrain.net>
2025-02-23 20:23:16 +01:00
..
src/main Start license headers with `/*` instead of `/**` (#18061) 2025-01-07 22:33:03 +01:00
NOTICE
README.md Multiple binding markdown fixes (#17422) 2024-09-28 17:46:53 +02:00
pom.xml Use Spotless sortpom plug-in (#18318) 2025-02-23 20:23:16 +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.