HTTP modbus data to Mango
-
Hi Rob,
I think you need http receiver since your device is going to POST data to in JSON format mango. It has nothing to do with modbus except in your device you are populating the JSON data with fields from the devices modbus map.
-
Hi gentlemen, hope you don't mind if I join the party, Rob, looking at your config, you're going to want a HTTP JSON Receiver since the body of the message is in JSON.
Secondly, configure your whitelist in the datasource settings to allow your Teltonika to send data in by entering it's ip address:
192.168.1.1
Use*
as your device identifier
I have learnt you need to amend the format of your JSON. The VR comes through as a broken array. namely:[2.388783e 02,]
To set the time, use the unix timestamp option so mango can parse it.%t
For ease of the jackson JSON format that mango uses:
Change your send url to:http://192.168.1.129/httpds
and move the RUT955 or remove it completely
I did:{"RUT955":[{"TS":"27/03/2020 12:33:36","ST":7007,"VR":[2.388783e 02,0]},{"TS":"27/03/2020 12:33:36","ST":7501,"VR":[678,0]}]}
LASTLY
Add a custom header: you need to overwrite theContent-Type: application/x-www-form-urlencoded
with:Content-Type: application/json
once that's done we can look at your points. So far I can get them parsing with
HTTP Parameter name:
/RUT955/0/VR
for voltage as an alphanumeric point. I cannot parse them as numeric because the format of the register data is a string (text), not a number.Let me know if you can further customise the data. Hope this helps
Fox
-
@MattFox Hi Matt,
Thanks for the assist. I can see data coming into Mango now using the HTTP receiver listener but that as far as I have got. The JSON output from the router is fairly customizable. What would be the best JSON data for Mango to receive in order to get those 2 data points? The variables I have are Timestamp(%d), Modbus Start Register (%s) (could be useful as its unique to each variable), Register Data(%a).
I could do something like {TS:%t, %s : %a} to give on output of:
{
"7007": "[2.409815e+02,]",
"TS": "1585705904"
},
{
"7501": "[91169,]",
"TS": "1585705904"
}Thanks again MattFox.
-
@robmalone said in HTTP modbus data to Mango:
{
"7007": "[2.409815e+02,]",
"TS": "1585705904"
},This I like; However the issue we have is the format of your numerical data.
This sucker:"[2.409815e+02,]",
JSON will not parse this because it's a broken array (the ,] denouncing there is nothing in the second array element)
Secondly the2.409815e+02
will be parsed into HTTP as2.409815e 02
because the '+' is treated as a space.
Can you not alter the format of the stored data? secondly if that second element is always empty, can you not associate the affiliated register to always return a 0 so the element isn't left blank?That's all for now. Once you've got through that I'll think you've cracked it.
Set up a link via https://webhook.site/ to post your data to; to both view and share. flick me a link via chat and I can look at what you're firing from your router.
Fox
-
@MattFox. I have spoken to the router manufacturer and unfortunately the issue with the scientific notation cant be changed at this point. Ill keep at it! Thanks again.
-
@robmalone for a quick fix we could throw together a relay using another program.
Are you able to code in other languages?
If not I don't mind helping you knock together a quick solution
EDIT: Silly me, for the content type header, make it this: no wonder the '+' disappeared...
application/json;charset=utf-8
Fox -
@MattFox I'm actually not trained in coding of any languages to be honest. I'm just working thing out as I go, sometimes successfully, sometimes not. I think ill try a couple of other ways before I waste any more of your time.
- The router also has an MQTT sender option so Ill try that first. I suspect I'll run into the same issue with this.
- I can use a different modbus slave device that populates modbus registers with integers instead of float points therefor no decimal places.
I might get back to you with some MQTT queries if that's OK. Thanks again for the help.
-
@robmalone said in HTTP modbus data to Mango:
I think ill try a couple of other ways before I waste any more of your time.
Trust me, you're not. I enjoy this kind of work. Is your mango version free? I'm confident we can get the data in a two stage process, you'll need a meta point data source and then we can get those points. Trust me this will be easy. Have you finally decided on your data format?
-
Thanks a lot @MattFox. I think I'll try MQTT since its a 3G modem and I believe that should help reduce the data.
Ill take a look over the next day or 2 and get back to you. I am using a free version at home just for testing but we have a 1000 point server we use commercially. Once I get this working at home we will be deploying it for use with the main server. -
Righto, I'll be here!