22
33// visit io.adafruit.com if you need to create an account,
44// or if you need your Adafruit IO key.
5- #define IO_USERNAME "your_username"
6- #define IO_KEY "your_key"
5+ #define IO_USERNAME "your_username"
6+ #define IO_KEY "your_key"
77
88/******************************* WIFI **************************************/
99
1414// - Feather M0 WiFi -> https://www.adafruit.com/products/3010
1515// - Feather WICED -> https://www.adafruit.com/products/3056
1616
17- #define WIFI_SSID "your_ssid"
18- #define WIFI_PASS "your_pass"
17+ #define WIFI_SSID "your_ssid"
18+ #define WIFI_PASS "your_pass"
1919
2020// comment out the following two lines if you are using fona or ethernet
2121#include "AdafruitIO_WiFi.h"
2222AdafruitIO_WiFi io (IO_USERNAME , IO_KEY , WIFI_SSID , WIFI_PASS );
2323
24+ /******************************* AirLift **************************************/
25+
26+ // the AdafruitIO_AirLift client will work with the following boards:
27+ // - Adafruit PyPortal -> https://www.adafruit.com/product/4116
28+ // - Adafruit Metro M4 Express AirLift Lite -> https://www.adafruit.com/product/4000
29+
30+ // uncomment the following two lines for AirLift,
31+ // and comment out the AdafruitIO_WiFi client in the WIFI section
32+ // #include "AdafruitIO_AIRLIFT.h"
33+ // AdafruitIO_AIRLIFT io(IO_USERNAME, IO_KEY, WIFI_SSID, WIFI_PASS);
2434
2535/******************************* FONA **************************************/
2636
@@ -32,7 +42,6 @@ AdafruitIO_WiFi io(IO_USERNAME, IO_KEY, WIFI_SSID, WIFI_PASS);
3242// #include "AdafruitIO_FONA.h"
3343// AdafruitIO_FONA io(IO_USERNAME, IO_KEY);
3444
35-
3645/**************************** ETHERNET ************************************/
3746
3847// the AdafruitIO_Ethernet client will work with the following boards:
@@ -41,4 +50,4 @@ AdafruitIO_WiFi io(IO_USERNAME, IO_KEY, WIFI_SSID, WIFI_PASS);
4150// uncomment the following two lines for ethernet,
4251// and comment out the AdafruitIO_WiFi client in the WIFI section
4352// #include "AdafruitIO_Ethernet.h"
44- // AdafruitIO_Ethernet io(IO_USERNAME, IO_KEY);
53+ // AdafruitIO_Ethernet io(IO_USERNAME, IO_KEY);
0 commit comments