mDot receiving packet from gateway
- This topic has 0 replies, 1 voice, and was last updated 8 years, 4 months ago by .
Viewing 1 post (of 1 total)
Viewing 1 post (of 1 total)
- You must be logged in to reply to this topic.
Hi,
I have a mDot connected to aep gateway and receiving rssi information from the gateway. Here is what I see on serial monitor for mDot,
[INFO] successfully sent data to gateway
[INFO] Packet Received: 1 Bytes SeqNo: 10618
I can see rssi is being sent here, but how should I actually display the rssi number? For example, packet received: rssi = 5.
I am using nodeRed to send this data back to mDot from gateway, using a function node which includes the following code
a = msg.rssi;
a= a.toString()
return a;
Thank you