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 8aeaceb commit 615da45Copy full SHA for 615da45
libraries/MySensors/MyRFDriverNRF24.cpp
@@ -15,13 +15,13 @@ void MyRFDriverNRF24::init() {
15
}
16
rf24->setAutoAck(1);
17
rf24->setAutoAck(BROADCAST_PIPE,false); // Turn off auto ack for broadcast
18
+ rf24->enableAckPayload();
19
rf24->setChannel(RF24_CHANNEL);
20
rf24->setPALevel(RF24_PA_LEVEL);
21
rf24->setDataRate(RF24_DATARATE);
22
rf24->setRetries(5,15);
23
rf24->setCRCLength(RF24_CRC_16);
24
rf24->enableDynamicPayloads();
- rf24->enableDynamicAck();
25
26
// All nodes listen to broadcast pipe (for FIND_PARENT_RESPONSE messages)
27
rf24->openReadingPipe(BROADCAST_PIPE, TO_ADDR(BROADCAST_ADDRESS));
0 commit comments