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.
2 parents 7fb9454 + e8f7cb1 commit ca6d79eCopy full SHA for ca6d79e
libraries/MySensors/MySensor.cpp
@@ -399,6 +399,10 @@ boolean MySensor::process() {
399
//
400
// lookup route in table and send message there
401
sendWrite(route, msg);
402
+ } else if (sender == GATEWAY_ADDRESS && destination == BROADCAST_ADDRESS) {
403
+ // A net gateway reply to a message previously sent by us from a 255 node
404
+ // We should broadcast this back to the node
405
+ sendWrite(destination, msg, true);
406
} else {
407
// A message comes from a child node and we have no
408
// route for it.
0 commit comments