You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
displayLocationOnMap(datacsvarray[0].toFloat(), datacsvarray[1].toFloat()); //Display current location on the map. Arguments are (float latitude, float longitude)
280
+
274
281
} elseif (datatype == "message") {
275
282
clearTFTReceived(); //message is written to the same area of the screen as received text, so this is cleared first
276
283
setCursorLine(5, 14);
@@ -279,7 +286,7 @@ void loop() {
279
286
tft.print(datacsvarray[i]);
280
287
tft.print(",");
281
288
}*/
282
-
delay(1000); //Delay for a second to read message
289
+
delay(1000); //Delay for a second so the user can read the message
283
290
} else {
284
291
//transmit("message", "message datatype not understood");
0 commit comments