I am using Node-Red and the ttn downlink node-red node. I am sending the following message to the ttn-downlink node in Node-Red
dev_id: “hs-esp32-lora-rfm95-1”
port: 1
payload: 88
…
However this is never sent / scheduled to be sent from the ttn network to the lora node.
I defined an encoder in ttn network and when I test the encoder the message is scheduled and sent to the LoraNode. But it is not sent when I try it with Node-Red.
RasPi based RAK831 – as an additional comment, in the ttn console I don’t see the payload message to be scheduled to send it to the LoraNode via the Gateway.
The problem was the payload json format. The TTN Downlink Node-Red Node has to send the data in the format of … … payload: {led: 33,}, … --led is just key value-- the encoder has to be setup accordingly. Using this format, it works and I receive in this case one byte (hex 21) on the LoraNode.
Thx