Reputation: 53
I have a E66 Fitness band connected to a gateway and the band does connect to the gateway and I receive data on MQTT. But I am unsure on how to decode the RawData format, can someone help me with that? Thanks
{
"TimeStamp":"2020-05-30 16:44:32",
"DataFormat":"RawData",
"BLEMac(hex)":"E5F604C2EAAE",
"RSSI(dBm)":-30,
"BLEName":"E67 EAAE",
"RawData(hex)":"02010610FF107803E8000000000000640023290009094536372045414145"
}
Upvotes: 4
Views: 10692
Reputation: 13345
BLE data is decoded as follows:-
And this repeats over the whole raw data. You can find the meaning of raw data here. Going over your example:-
1st Set:
2nd Set:
3rd Set:
I hope this helps.
Upvotes: 15