Commit 84aa2075 authored by Eric Duminil's avatar Eric Duminil
Browse files

F-String

parent 45932075
......@@ -80,9 +80,9 @@ namespace lorawan {
void onEvent(ev_t ev) {
char current_time[23];
ntp::getLocalTime(current_time);
Serial.print("LoRa - ");
Serial.print(F("LoRa - "));
Serial.print(current_time);
Serial.print(" - ");
Serial.print(F(" - "));
switch (ev) {
case EV_JOINING:
Serial.println(F("EV_JOINING"));
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment