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
AdafruitIO_AIRLIFT(constchar *user, constchar *key, constchar *ssid, constchar *pass, int ssPin, int ackPin, int rstPin, int gpio0Pin) : AdafruitIO(user, key)
59
54
{
55
+
_ssPin = ssPin;
56
+
_ackPin = ackPin;
57
+
_rstPin = rstPin;
58
+
_gpio0Pin = gpio0Pin;
60
59
_ssid = ssid;
61
60
_pass = pass;
62
61
_mqtt_client = new WiFiSSLClient;
@@ -130,30 +129,11 @@ class AdafruitIO_AIRLIFT : public AdafruitIO {
AdafruitIO_WINC1500(constchar *user, constchar *key, constchar *ssid, constchar *pass, int winc_en, int winc_cs, int winc_irq, int winc_rst) : AdafruitIO(user, key)
34
34
{
35
+
_winc_en = winc_en;
36
+
_winc_cs = winc_cs;
37
+
_winc_irq = winc_irq;
38
+
_winc_rst = winc_rst;
35
39
_ssid = ssid;
36
40
_pass = pass;
37
41
_mqtt_client = new WiFiSSLClient;
@@ -75,14 +79,15 @@ class AdafruitIO_WINC1500 : public AdafruitIO {
0 commit comments