Switch to Sending Without ACK for RFM69

This commit is contained in:
seiichiro 2019-10-07 19:02:03 +02:00
parent 4a17e1faa9
commit 66e45b8e67
1 changed files with 1 additions and 1 deletions

View File

@ -178,7 +178,7 @@ void loop()
#endif
#ifdef RF_RFM69
radio.sendWithRetry(RFM69_GATEWAY, data, sizeof(data), 3);
radio.send(RFM69_GATEWAY, data, sizeof(data));
radio.sleep();
#endif