Skip to content

Commit 2a2c564

Browse files
author
brentru
committed
doxy /wifi
1 parent 0919d3a commit 2a2c564

2 files changed

Lines changed: 14 additions & 11 deletions

File tree

src/wifi/AdafruitIO_AIRLIFT.h

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
#include "SPI.h"
2727
#include "WiFiNINA.h"
2828

29-
#define NINAFWVER "1.0.0"
29+
#define NINAFWVER "1.0.0" /*!< nina-fw version compatible with this library. */
3030

3131
/****************************************************************************/
3232
/*!
@@ -134,15 +134,18 @@ class AdafruitIO_AIRLIFT : public AdafruitIO {
134134
const char *connectionType() { return "AIRLIFT"; }
135135

136136
protected:
137-
const char *_ssid;
138-
const char *_pass;
139-
String _fv = "0.0.0";
140-
int _ssPin, _ackPin, _rstPin, _gpio0Pin = -1;
141-
142-
WiFiSSLClient *_http_client;
143-
WiFiSSLClient *_mqtt_client;
144-
145-
SPIClass *_wifi;
137+
const char *_ssid; /*!< WiFi network SSID. */
138+
const char *_pass; /*!< WiFi network password. */
139+
String _fv = "0.0.0"; /*!< nina-fw version, read from ESP32. */
140+
int _ssPin = -1; /*!< ESP32 slave-select pin. */
141+
int _ackPin = -1; /*!< ESP32 ACK pin. */
142+
int _rstPin = -1; /*!< ESP32 RESET pin. */
143+
int _gpio0Pin = -1; /*!< ESP32 GPIO0 pin. */
144+
145+
WiFiSSLClient *_http_client; /*!< Instance of HTTP client. */
146+
WiFiSSLClient *_mqtt_client; /*!< Instance of MQTT client. */
147+
148+
SPIClass *_wifi; /*!< Instance of WiFi. */
146149

147150
/**************************************************************************/
148151
/*!

src/wifi/AdafruitIO_ESP8266.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* @file AdafruitIO_8266.cpp
2+
* @file AdafruitIO_ESP8266.h
33
*
44
* Adafruit invests time and resources providing this open source code.
55
* Please support Adafruit and open source hardware by purchasing

0 commit comments

Comments
 (0)