Greetings, I'm trying to integrate a JemRF temperature and humidity sensor to my ThingsBoard ecosystem via MQTT. (
https://www.jemrf.com/es/products/wifi-temperature-and-humidity-sensor-internet-of-things-iot)
I connected the device and the JSON data format is strange, although it is a JSON, this is the format: [[{"temperature":"19.50","unit_of_measurement":"C"}],[{"humidity":"68.40","unit_of_measurement":"%"}]]
Which is not possible to process in ThingsBoard since the platform is waiting for a JSON of this format:
{ "temperature": 17, 
   "unit_of_measurement_temperature":"C", 
   "humidity": 60, 
    "unit_of_measurement_humidity":"%"
}
Or at least: 
[{ "temperature": 17, 
   "unit_of_measurement_temperature":"C"}, 
   {  "humidity": 60, 
    "unit_of_measurement_humidity":"%"}]
 Is it possible to change this format? I'm trying to integrate without extra gateways or proxies.
Thanks in advance!