You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+22-4Lines changed: 22 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -51,19 +51,26 @@ The examples below demonstrate how to switch between platforms.
51
51
52
52
### WiFi (ESP8266, M0 WINC1500, WICED)
53
53
54
+
If you are using the included examples, you do not need to change anything for the Adafruit WiFi Feathers. All WiFi based Feathers (ESP8266, M0 WiFi, WICED) will work with the examples out of the box.
55
+
56
+
### Cellular (32u4 FONA)
57
+
58
+
For FONA, you will only need to change from the default WiFi constructor to the FONA specific constructor. The rest of the sketch remains the same.
If you need to set APN info, you can do so by adding a call to `io.setAPN()` after `io.connect()` in the `setup()` function.
73
+
If your carrier requires APN info, you can set it by adding a call to `io.setAPN()` after `io.connect()` in the `setup()` function of the sketch.
67
74
68
75
```ino
69
76
voidsetup() {
@@ -81,6 +88,17 @@ void setup() {
81
88
82
89
### Ethernet (Ethernet FeatherWing)
83
90
91
+
For Ethernet, you will only need to change from the default WiFi constructor to the Ethernet specific constructor. The rest of the sketch remains the same.
0 commit comments