Hello everyone,
I’m using openremote to read data from a gateway using MQTT, what this gateway does is to detect nfc cards and send their info to the gateway which in return sends it to OR in this format:
{
"msg": "advData",
"gmac": "gatewayMac",
"obj": [
{
"type": 4,
"dmac": "devicemac",
"uuid": "uuid",
"majorID": majorId,
"minorID": minorId,
"refpower": -59,
"rssi": -56,
"time": "2024-01-09 12:30:28.682"
},
{
"type": 4,
"dmac": "devicemac",
"uuid": "uuid",
"majorID": majorId,
"minorID": minorId,
"refpower": -59,
"rssi": -56,
"time": "2024-01-09 12:30:28.682"
},
..............
]
}
since threre will be a lot of devices(cards) scanned, I want to organize these info in a table like this:
columns: |gmac|dmac|uuid|majorID|minorID…
line1 : |gmac1|dmac1|uuid1|majorID1…
I tried doing this with the regular table, but I couldn’t, and I was about to start creating a custom UI widget when I instead came to ask if there’s a better/simpler alternative.
thanks in advance