diff --git a/LibAPRS/examples/Basic_usage/Basic_usage.ino b/LibAPRS/examples/Basic_usage/Basic_usage.ino index 5bbcce9..3be3303 100644 --- a/LibAPRS/examples/Basic_usage/Basic_usage.ino +++ b/LibAPRS/examples/Basic_usage/Basic_usage.ino @@ -150,9 +150,8 @@ void processPacket() { boolean whichExample = false; void loop() { - delay(2000); - - processPacket(); + + delay(1000); if (whichExample) { locationUpdateExample(); } else { @@ -160,4 +159,6 @@ void loop() { } whichExample ^= true; + delay(500); + processPacket(); } \ No newline at end of file