Änderungen
Aus Hackerspace Ffm
LoRaWAN
,/* LoRaWAN Bibliotheken */
== LoRaWAN Bibliotheken ==
Wichtig: '''Nicht''' die LoRaWAN Bibliothek aus dem Arduino Library Manager verwenden, sonder manuel diese hier installieren:
* [https://github.com/matthijskooijman/arduino-lmic LMIC für Arduino von Matthijs Kooijman] Am meisten beim TTN referenziert.
Kann auch interessant sein (ungetestet):
* [https://github.com/mcci-catena/arduino-lorawan MCCI Catena Arduino-Lorawan]
<pre>
// Enable data rate adaptation(only useful for nodes with fixed location)
LMIC_setAdrMode(1);
</pre>
Kurzer LMIC Code(ungetestet): [https://github.com/SensorsIot/LoRa/blob/master/Nodes/Dragino/HelloWorld/HelloWorld.ino]
=== Erweiterung um Packete zu empfangen ===
<pre>
case EV_TXCOMPLETE: