1
0
mirror of https://github.com/sandeepmistry/arduino-LoRa.git synced 2025-07-31 10:24:22 +03:00

sending once a second is too aggressive

This commit is contained in:
Morgan 'ARR\!' Allen
2020-03-12 07:37:15 -07:00
parent 3e4b803b26
commit 921f4308ae

View File

@ -18,7 +18,7 @@ void setup() {
}
void loop() {
if (runEvery(1000)) { // repeat every 1000 millis
if (runEvery(5000)) { // repeat every 5000 millis
Serial.print("Sending packet non-blocking: ");
Serial.println(counter);