looking for anybody who has done a simple explanation of how to get TTN application data to Azure IoT Central.
My DIsclaimer - IoT noob, currently can use the Cayenne, Ubidots, Tago etc integrations where it is fairly straight forward, also using NodeRED and MQTT for some stuff but would like to remove the intermediary step if possible.
Can you use the HTTP integration?
Looking for some basic help on where to start - please be gentle
Hi Paul, I am using TTN HTTP Integration to Azure Eventhub and it works just fine.
I am interested to connect devices to IoTHub itself so any feedback is appreciated.
I know this post is a bit old, but if you have any notes on how you integrated with AWS, it would certainly help. Iโm particularly interested in configuring the TTN integration and applications on AWS. Setting up an AWS instance is pretty straightforward.
found the problem the device id had to be lowercase, the things network uses A-F. (not a-f) (deviceId in this code is Device EUI from the things network not Device ID)
req.body = {
device: {
deviceId: req.body.hardware_serial.toLowerCase()
},
measurements: req.body.payload_fields
};
@wrldtvlr - On my AWS instance I am running Node RED, Influx and Grafana.
Node RED uses a MQTT node to grab data from my device at TTN - a function node gets it formatted for Influx and then an Influx node writes it to the database.
So in effect I dont use the AWS IoT stuff - just my own dashboards running in Grafana