Advertisement
Guest User

Untitled

a guest
Apr 18th, 2018
536
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.89 KB | None | 0 0
  1. /************************ Adafruit IO Config *******************************/
  2.  
  3. // visit io.adafruit.com if you need to create an account,
  4. // or if you need your Adafruit IO key.
  5. #define IO_USERNAME  "IO NAME"
  6. #define IO_KEY       "IO KEY"
  7.  
  8. /******************************* WIFI **************************************/
  9.  
  10. // the AdafruitIO_WiFi client will work with the following boards:
  11. //   - HUZZAH ESP8266 Breakout -> https://www.adafruit.com/products/2471
  12. //   - Feather HUZZAH ESP8266 -> https://www.adafruit.com/products/2821
  13. //   - Feather M0 WiFi -> https://www.adafruit.com/products/3010
  14. //   - Feather WICED -> https://www.adafruit.com/products/3056
  15.  
  16. #define WIFI_SSID       "MY WIFI"
  17. #define WIFI_PASS       "1234"
  18.  
  19. // comment out the following two lines if you are using fona or ethernet
  20. #include "AdafruitIO_WiFi.h"
  21. AdafruitIO_WiFi io(IO_USERNAME, IO_KEY, WIFI_SSID, WIFI_PASS);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement