how are you using Esp8266 as Lora node(cayenne LPP)?
I assume I would simply use a CayenneLPP library for my Arduino devices. the devices would use a ESP8266 to send the sensor data(cayenne LPP payload) over WiFi.
you can read the data from cayenne using Rest API and then do whatever you want to do with it. Or rather use node-red to get data and process it.
ah ok, my system( application server) can use the Cayenne REST endpoint to obtain the data that the devices already sent to Cayenne .that answers my question.
I am aware that I could just send it to the other system(which uses MQTT as well) from the device but rather not…>
i need not understand what you mean by this.
I just meant the adrunio device would send my Cayenne LPP payload to the MQTT Cayenne , and have a separate connection to send to my system(has a MQTT broker)…but as you explained above i can simply use the Cayenne REST API to get the original Cayenne LPP payload sent.
in this code for example or any MQTT Client that i use…
it looks It looks like i cloud subscribe to the MQTT and the struct “MessageData” would have my Cayenne LPP data( I assume the HEX format)…is this correct?