File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -626,7 +626,7 @@ class LoRaModem : public Stream
626626 }
627627
628628 String getDevAddr () {
629- String devaddr;
629+ String devaddr = " " ;
630630 sendAT (GF (" +DEVADDR?" ));
631631 if (waitResponse (" +OK=" ) == 1 ) {
632632 devaddr = stream.readStringUntil (' \r ' );
@@ -635,7 +635,7 @@ class LoRaModem : public Stream
635635 }
636636
637637 String getNwkSKey () {
638- String nwkskey;
638+ String nwkskey = " " ;
639639 sendAT (GF (" +NWKSKEY?" ));
640640 if (waitResponse (" +OK=" ) == 1 ) {
641641 nwkskey = stream.readStringUntil (' \r ' );
@@ -644,7 +644,7 @@ class LoRaModem : public Stream
644644 }
645645
646646 String getAppSKey () {
647- String appskey;
647+ String appskey = " " ;
648648 sendAT (GF (" +APPSKEY?" ));
649649 if (waitResponse (" +OK=" ) == 1 ) {
650650 appskey = stream.readStringUntil (' \r ' );
You can’t perform that action at this time.
0 commit comments