We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a48f398 commit c336d93Copy full SHA for c336d93
libraries/OpenThread/examples/Native/SimpleThreadNetwork/RouterNode/RouterNode.ino
@@ -67,7 +67,10 @@ void loop() {
67
68
IPAddress nodeRloc = threadChildNode.getRloc();
69
Serial.printf("Node RLOC: %s\r\n", nodeRloc.toString().c_str());
70
-
+
71
+ IPAddress leaderRloc = threadChildNode.getLeaderRloc();
72
+ Serial.printf("Leader RLOC: %s\r\n", leaderRloc.toString().c_str());
73
74
Serial.println();
75
76
} else {
0 commit comments