[SX1231] Fixed typos in examples

This commit is contained in:
jgromes 2019-05-24 14:33:06 +02:00
parent 1bc2633048
commit 10dac07f57

View file

@ -49,11 +49,11 @@ void loop() {
if (state == ERR_NONE) { if (state == ERR_NONE) {
// the packet was successfully transmitted // the packet was successfully transmitted
Serial.println(" success!"); Serial.println(F(" success!"));
} else if (state == ERR_PACKET_TOO_LONG) { } else if (state == ERR_PACKET_TOO_LONG) {
// the supplied packet was longer than 256 bytes // the supplied packet was longer than 256 bytes
Serial.println(" too long!"); Serial.println(F(" too long!"));
} }