Optimizing routing
-
Hello everybody. Here is a sketch with a simple example of optimizing routing. Implemented the alternate sending of messages from the node to the node bypassing the gateway and sending a message to the gateway. The replacement of id in _transportConfig.parentNodeId is used. I hope this will be useful for your developments.
bool state = true; #define MY_DEBUG #define MY_RADIO_NRF24 #define MY_NODE_ID 100 //#define MY_PARENT_NODE_IS_STATIC #define MY_TRANSPORT_WAIT_READY_MS 5000 // optional parameter used for the test #define MY_PASSIVE_NODE // optional parameter used for the test //#define MY_PARENT_NODE_ID 101 #include <MySensors.h> #define BUTTON 1 MyMessage msg(BUTTON,V_STATUS); void presentation() { present(BUTTON, S_BINARY); sendSketchInfo("TEST BUTTON", "1.2"); } void setup() { } void loop() { _transportConfig.parentNodeId = 101; send(msg.setDestination(101).setSensor(1).set(state)); delay(5000); _transportConfig.parentNodeId = 0; send(msg.setDestination(0).setSensor(1).set(state)); delay(5000); }
Hello! It looks like you're interested in this conversation, but you don't have an account yet.
Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.
With your input, this post could be even better 💗
Register Login