This schematic shows how to connect an Adafruit Feather M0 Proto with an Adafruit Radio FeatherWing to make a functioning LoRaWAN node that works with The Things Network.
For software, please refer to code on branch MCCI-Catena of the MCCI-Catena mapthethings-arduino.git. Bear in mind, however, that this code was last used in February 2017, and the original code at https://github.com/things-nyc/mapthethings-arduino now supports features that are needed by the new iPhone app.
For reference, you need the following pin-table for working with arduino-lmic.
const lmic_pinmap lmic_pins = {
.nss = 6,
.rxtx = LMIC_UNUSED_PIN,
.rst = 5,
.dio = {12, 11, 10},
};
You'll need to edit your .ino
sketches (including the Map-The-Things sketch), locating the lmic_pins
definition and updating to match the above.