Skip to content
  • MySensors
  • OpenHardware.io
  • Categories
  • Recent
  • Tags
  • Popular
Skins
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Brand Logo
  1. Home
  2. Development
  3. Optimizing routing

Optimizing routing

Scheduled Pinned Locked Moved Development
1 Posts 1 Posters 618 Views 3 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • berkseoB Offline
    berkseoB Offline
    berkseo
    wrote on last edited by
    #1

    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.

    https://youtu.be/WvnR6_2qGtU

    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);  
    
    }
    
    1 Reply Last reply
    0
    Reply
    • Reply as topic
    Log in to reply
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes


    18

    Online

    11.7k

    Users

    11.2k

    Topics

    113.0k

    Posts


    Copyright 2025 TBD   |   Forum Guidelines   |   Privacy Policy   |   Terms of Service
    • Login

    • Don't have an account? Register

    • Login or register to search.
    • First post
      Last post
    0
    • MySensors
    • OpenHardware.io
    • Categories
    • Recent
    • Tags
    • Popular