We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents fb0cf3c + b130452 commit 7760d14Copy full SHA for 7760d14
content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lora-button-press/lora-button-press.md
@@ -199,12 +199,12 @@ void loop() {
199
while (LoRa.available()) {
200
contents += (char)LoRa.read();
201
}
202
-
+
203
+ Serial.println(contents);
204
// print RSSI of packet
205
Serial.print("' with RSSI ");
206
Serial.println(LoRa.packetRssi());
- Serial.println(contents);
207
208
if(contents.equals(buttonPress)){
209
x = !x;
210
@@ -306,10 +306,10 @@ void loop() {
306
307
308
309
310
311
312
313
314
315
0 commit comments