Data Visualization

The NEON sensors send data over LoRa in an encrypted message, referred to as payload. Said payload is decoded by the LoRa Network Server (LNS) and presented in a readable JSON format. The structure of these messages differs depending on the product family, communication protocol, and message type. Please refer to your LNS documentation to learn where specifically the LoRa data frames are displayed. Below is an example of the JSON structure of a message.

Example of the JSON structure of a message
[
  {
    "description": "RT v1 Device status message",
    "type": "uplink",
    "input": {
      "bytes": "107515030002230101",
      "recvTime": "2023-02-15T13:58:57.743Z",
      "fPort": 2
    },
    "output": {
      "data": {
        "device_status": {
          "protocol_version": 1,
          "battery_voltage": 2.9176470588235293,
          "temperature": 21,
          "lora_tx_counter": 3,
          "avg_rssi": "-100..-129",
          "bist": "0x0123",
          "event_counter": 1
        }
      }
    }
  }
]

Last updated