We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 442971f commit cb17013Copy full SHA for cb17013
library.properties
@@ -1,5 +1,5 @@
1
name=LoRaNow
2
-version=1.0.1
+version=1.0.2
3
author=Luiz Henrique Cassettari
4
maintainer=Luiz Henrique Cassettari <[email protected]>
5
sentence=LoRaNow Library is a simple LoRa Node <> Gateway communication protocol.
src/LoRaNow.cpp
@@ -494,6 +494,11 @@ void LoRaNowClass::txMode()
494
LoRa.idle();
495
LoRa.setFrequency(frequency);
496
LoRa.setSpreadingFactor(sf);
497
+ LoRa.setSignalBandwidth(125E3);
498
+ LoRa.setCodingRate4(5);
499
+ LoRa.setPreambleLength(8);
500
+ LoRa.setSyncWord(0x12);
501
+ LoRa.disableCrc();
502
503
if (LoRaNow._gateway == true)
504
LoRa.enableInvertIQ();
0 commit comments