Skip to content

Commit d07b026

Browse files
author
brentru
committed
bring back travis, patch ESP8266 BSP 2.5.1 error, enforce SSL fingerprint on ESP8266
1 parent 66eeae7 commit d07b026

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ install:
2020

2121
script:
2222
# build ESP8266 target
23-
# - build_platform esp8266
23+
- build_platform esp8266
2424
# build SAMD target
2525
- arduino --install-library "WiFi101", "Ethernet"
2626
- build_platform zero

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=Adafruit IO Arduino
2-
version=3.1.0
2+
version=3.2.0
33
author=Adafruit
44
maintainer=Adafruit <[email protected]>
55
sentence=Arduino library to access Adafruit IO.

src/AdafruitIO_Definitions.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
#define ADAFRUITIO_DEFINITIONS_H_
1414

1515
#define ADAFRUITIO_VERSION_MAJOR 3
16-
#define ADAFRUITIO_VERSION_MINOR 1
16+
#define ADAFRUITIO_VERSION_MINOR 2
1717
#define ADAFRUITIO_VERSION_PATCH 0
1818

1919
// forward declaration

src/wifi/AdafruitIO_ESP8266.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ AdafruitIO_ESP8266::AdafruitIO_ESP8266(const char *user, const char *key, const
1818
_ssid = ssid;
1919
_pass = pass;
2020
_client = new WiFiClientSecure;
21+
_client->setFingerprint(AIO_SSL_FINGERPRINT);
2122
_mqtt = new Adafruit_MQTT_Client(_client, _host, _mqtt_port);
2223
_http = new HttpClient(*_client, _host, _http_port);
2324
}

0 commit comments

Comments
 (0)