37 lines
930 B
C
37 lines
930 B
C
//
|
|
// Adafruit invests time and resources providing this open source code.
|
|
// Please support Adafruit and open source hardware by purchasing
|
|
// products from Adafruit!
|
|
//
|
|
// Copyright (c) 2015-2016 Adafruit Industries
|
|
// Authors: Tony DiCola, Todd Treece
|
|
// Licensed under the MIT license.
|
|
//
|
|
// All text above must be included in any redistribution.
|
|
//
|
|
#ifndef ADAFRUITIO_WIFI_H
|
|
#define ADAFRUITIO_WIFI_H
|
|
|
|
#if defined(ARDUINO_SAMD_MKR1000)
|
|
|
|
#include "AdafruitIO_MKR1000.h"
|
|
typedef AdafruitIO_MKR1000 AdafruitIO_WiFi;
|
|
|
|
#elif !defined(ARDUINO_SAMD_MKR1000) && defined(ARDUINO_ARCH_SAMD)
|
|
|
|
#include "AdafruitIO_WINC1500.h"
|
|
typedef AdafruitIO_WINC1500 AdafruitIO_WiFi;
|
|
|
|
#elif defined(ESP8266)
|
|
|
|
#include "AdafruitIO_ESP8266.h"
|
|
typedef AdafruitIO_ESP8266 AdafruitIO_WiFi;
|
|
|
|
#elif defined(ARDUINO_STM32_FEATHER)
|
|
|
|
#include "AdafruitIO_WICED.h"
|
|
typedef AdafruitIO_WICED AdafruitIO_WiFi;
|
|
|
|
#endif
|
|
|
|
#endif // ADAFRUITIO_WIFI_H
|