transform_binary_payload/src-payload-decoders/python/dragino_lht65.py [90:119]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    test_definition = [
        {
            "input": "CBF60B0D0376010ADD7FFF",
            "output": {
                "battery_status": "Good",
                "battery_value": 3.062,
                "temperature_internal": 28.29,
                "humidity": 88.6,
                "temperature_external": 27.81

            }
        },
        {
            "input": "CBBDF5C6022E01F54F7FFF",
            "output": {
                "battery_status": "Good",
                "battery_value": 3.005,
                "temperature_internal": -26.17,
                "humidity": 55.8,
                "temperature_external": -27.36

            }
        }
    ]

    for test in test_definition:
        base64_input = base64.b64encode(
            bytearray.fromhex(test.get("input"))).decode("utf-8")
        output = dict_from_payload(base64_input)
        for key in test.get("output"):
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



workshop/sampledecoder/src/dragino_lht65.py [73:102]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    test_definition = [
        {
            "input": "CBF60B0D0376010ADD7FFF",
            "output": {
                "battery_status": "Good",
                "battery_value": 3.062,
                "temperature_internal": 28.29,
                "humidity": 88.6,
                "temperature_external": 27.81

            }
        },
        {
            "input": "CBBDF5C6022E01F54F7FFF",
            "output": {
                "battery_status": "Good",
                "battery_value": 3.005,
                "temperature_internal": -26.17,
                "humidity": 55.8,
                "temperature_external": -27.36

            }
        }
    ]

    for test in test_definition:
        base64_input = base64.b64encode(
            bytearray.fromhex(test.get("input"))).decode("utf-8")
        output = dict_from_payload(base64_input)
        for key in test.get("output"):
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



