Skip to content

Commit 8ec44eb

Browse files
authored
Merge pull request #755 from d-a-v/featherM0connectDIO1
Warning message for Adafruit Feather M0 pin mapping
2 parents 300d3f9 + 04983ea commit 8ec44eb

File tree

7 files changed

+14
-0
lines changed

7 files changed

+14
-0
lines changed

examples/helium-otaa/helium-otaa.ino

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
* world!", using frequency and encryption settings matching those of
1313
* the The Things Network. It's pre-configured for the Adafruit
1414
* Feather M0 LoRa.
15+
* /!\ By default Adafruit Feather M0's pin 6 and DIO1 are not connected.
16+
* Please ensure they are connected.
1517
*
1618
* This uses OTAA (Over-the-air activation), where where a DevEUI and
1719
* application key is configured, which are used in an over-the-air

examples/raw-feather/raw-feather.ino

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,8 @@ Author:
6262
// m0 defs ADAFRUIT_FEATHER_M0
6363
//
6464
#if defined(ARDUINO_SAMD_FEATHER_M0) || defined(ADAFRUIT_FEATHER_M0)
65+
// /!\ By default Adafruit Feather M0's pin 6 and DIO1 are not connected.
66+
// Please ensure they are connected.
6567
const lmic_pinmap lmic_pins = {
6668
.nss = 8,
6769
.rxtx = LMIC_UNUSED_PIN,

examples/raw-halconfig/raw-halconfig.ino

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ Module: raw-halconfig.ino
44
55
Function:
66
Auto-configured raw test example, for Adafruit Feather M0 LoRa
7+
/!\ By default Adafruit Feather M0's pin 6 and DIO1 are not connected.
8+
Please ensure they are connected.
79
810
Copyright notice and License:
911
See LICENSE file accompanying this project.

examples/ttn-abp-feather-us915-dht22/ttn-abp-feather-us915-dht22.ino

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,8 @@ static osjob_t sendjob;
7676
const unsigned TX_INTERVAL = 30;
7777

7878
// Pin mapping for Adafruit Feather M0 LoRa
79+
// /!\ By default Adafruit Feather M0's pin 6 and DIO1 are not connected.
80+
// Please ensure they are connected.
7981
const lmic_pinmap lmic_pins = {
8082
.nss = 8,
8183
.rxtx = LMIC_UNUSED_PIN,

examples/ttn-otaa-feather-us915-dht22/ttn-otaa-feather-us915-dht22.ino

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,8 @@ static osjob_t sendjob;
6767
const unsigned TX_INTERVAL = 30;
6868

6969
// Pin mapping for Adafruit Feather M0 LoRa
70+
// /!\ By default Adafruit Feather M0's pin 6 and DIO1 are not connected.
71+
// Please ensure they are connected.
7072
const lmic_pinmap lmic_pins = {
7173
.nss = 8,
7274
.rxtx = LMIC_UNUSED_PIN,

examples/ttn-otaa-feather-us915/ttn-otaa-feather-us915.ino

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,8 @@ const unsigned TX_INTERVAL = 60;
8181
//
8282
#if defined(ARDUINO_SAMD_FEATHER_M0) || defined(ADAFRUIT_FEATHER_M0)
8383
// Pin mapping for Adafruit Feather M0 LoRa, etc.
84+
// /!\ By default Adafruit Feather M0's pin 6 and DIO1 are not connected.
85+
// Please ensure they are connected.
8486
const lmic_pinmap lmic_pins = {
8587
.nss = 8,
8688
.rxtx = LMIC_UNUSED_PIN,

examples/ttn-otaa-halconfig-us915/ttn-otaa-halconfig-us915.ino

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
* world!", using frequency and encryption settings matching those of
1313
* the The Things Network. It's pre-configured for the Adafruit
1414
* Feather M0 LoRa.
15+
* /!\ By default Adafruit Feather M0's pin 6 and DIO1 are not connected.
16+
* Please ensure they are connected.
1517
*
1618
* This uses OTAA (Over-the-air activation), where where a DevEUI and
1719
* application key is configured, which are used in an over-the-air

0 commit comments

Comments
 (0)