Skip to content

Commit 5cde62a

Browse files
committed
renamed secure examples
1 parent 203a84c commit 5cde62a

File tree

8 files changed

+16
-16
lines changed

8 files changed

+16
-16
lines changed

.travis.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@ env:
44
- IDE_VERSION=1.8.5
55
matrix:
66
- EXAMPLE="AdafruitHuzzahESP8266" BOARD="esp8266:esp8266:huzzah:FlashSize=4M3M,CpuFrequency=80"
7-
- EXAMPLE="AdafruitHuzzahESP8266_SSL" BOARD="esp8266:esp8266:huzzah:FlashSize=4M3M,CpuFrequency=80"
7+
- EXAMPLE="AdafruitHuzzahESP8266Secure" BOARD="esp8266:esp8266:huzzah:FlashSize=4M3M,CpuFrequency=80"
88
- EXAMPLE="ArduinoEthernetShield" BOARD="arduino:avr:uno"
99
- EXAMPLE="ArduinoMKRGSM1400" BOARD="arduino:samd:mkrgsm1400"
10-
- EXAMPLE="ArduinoMKRGSM1400_SSL" BOARD="arduino:samd:mkrgsm1400"
11-
- EXAMPLE="ArduinoWiFi101_SSL" BOARD="arduino:avr:uno"
10+
- EXAMPLE="ArduinoMKRGSM1400Secure" BOARD="arduino:samd:mkrgsm1400"
11+
- EXAMPLE="ArduinoWiFi101Secure" BOARD="arduino:avr:uno"
1212
- EXAMPLE="ArduinoWiFiShield" BOARD="arduino:avr:uno"
1313
- EXAMPLE="ArduinoYun" BOARD="arduino:avr:yun"
14-
- EXAMPLE="ArduinoYun_SSL" BOARD="arduino:avr:yun"
14+
- EXAMPLE="ArduinoYunSecure" BOARD="arduino:avr:yun"
1515
- EXAMPLE="ESP32DevelopmentBoard" BOARD="espressif:esp32:esp32:FlashFreq=80"
16-
- EXAMPLE="ESP32DevelopmentBoard_SSL" BOARD="espressif:esp32:esp32:FlashFreq=80"
16+
- EXAMPLE="ESP32DevelopmentBoardSecure" BOARD="espressif:esp32:esp32:FlashFreq=80"
1717
before_install:
1818
- /sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_1.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :1 -ac -screen 0 1280x1024x16
1919
- sleep 3

CMakeLists.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,17 @@ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
2020

2121
set(SOURCE_FILES
2222
examples/AdafruitHuzzahESP8266/AdafruitHuzzahESP8266.ino
23-
examples/AdafruitHuzzahESP8266_SSL/AdafruitHuzzahESP8266_SSL.ino
23+
examples/AdafruitHuzzahESP8266Secure/AdafruitHuzzahESP8266Secure.ino
2424
examples/ArduinoEthernetShield/ArduinoEthernetShield.ino
2525
examples/ArduinoMKRGSM1400/ArduinoMKRGSM1400.ino
26-
examples/ArduinoMKRGSM1400_SSL/ArduinoMKRGSM1400_SSL.ino
26+
examples/ArduinoMKRGSM1400Secure/ArduinoMKRGSM1400Secure.ino
2727
examples/ArduinoWiFi101/ArduinoWiFi101.ino
28-
examples/ArduinoWiFi101_SSL/ArduinoWiFi101_SSL.ino
28+
examples/ArduinoWiFi101Secure/ArduinoWiFi101Secure.ino
2929
examples/ArduinoWiFiShield/ArduinoWiFiShield.ino
3030
examples/ArduinoYun/ArduinoYun.ino
31-
examples/ArduinoYun_SSL/ArduinoYun_SSL.ino
31+
examples/ArduinoYunSecure/ArduinoYunSecure.ino
3232
examples/ESP32DevelopmentBoard/ESP32DevelopmentBoard.ino
33-
examples/ESP32DevelopmentBoard_SSL/ESP32DevelopmentBoard_SSL.ino
33+
examples/ESP32DevelopmentBoardSecure/ESP32DevelopmentBoardSecure.ino
3434
src/lwmqtt
3535
src/MQTT.h
3636
src/MQTTClient.h

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ The library is also available on [PlatformIO](https://platformio.org/lib/show/61
1313

1414
The following examples show how you can use the library with various Arduino compatible hardware:
1515

16-
- [Arduino Yun & Yun-Shield](https://github.com/256dpi/arduino-mqtt/blob/master/examples/ArduinoYun/ArduinoYun.ino) ([SSL](https://github.com/256dpi/arduino-mqtt/blob/master/examples/ArduinoYun_SSL/ArduinoYun_SSL.ino))
16+
- [Arduino Yun & Yun-Shield](https://github.com/256dpi/arduino-mqtt/blob/master/examples/ArduinoYun/ArduinoYun.ino) ([Secure](https://github.com/256dpi/arduino-mqtt/blob/master/examples/ArduinoYunSecure/ArduinoYunSecure.ino))
1717
- [Arduino Ethernet Shield](https://github.com/256dpi/arduino-mqtt/blob/master/examples/ArduinoEthernetShield/ArduinoEthernetShield.ino)
1818
- [Arduino WiFi Shield](https://github.com/256dpi/arduino-mqtt/blob/master/examples/ArduinoWiFiShield/ArduinoWiFiShield.ino)
19-
- [Adafruit HUZZAH ESP8266](https://github.com/256dpi/arduino-mqtt/blob/master/examples/AdafruitHuzzahESP8266/AdafruitHuzzahESP8266.ino) ([SSL](https://github.com/256dpi/arduino-mqtt/blob/master/examples/AdafruitHuzzahESP8266_SSL/AdafruitHuzzahESP8266_SSL.ino))
20-
- [Arduino/Genuino WiFi101 Shield](https://github.com/256dpi/arduino-mqtt/blob/master/examples/ArduinoWiFi101/ArduinoWiFi101.ino) ([SSL](https://github.com/256dpi/arduino-mqtt/blob/master/examples/ArduinoWiFi101_SSL/ArduinoWiFi101_SSL.ino))
21-
- [Arduino MKR GSM 1400](https://github.com/256dpi/arduino-mqtt/blob/master/examples/ArduinoMKRGSM1400/ArduinoMKRGSM1400.ino) ([SSL](https://github.com/256dpi/arduino-mqtt/blob/master/examples/ArduinoMKRGSM1400_SSL/ArduinoMKRGSM1400_SSL.ino))
22-
- [ESP32 Development Board](https://github.com/256dpi/arduino-mqtt/blob/master/examples/ESP32DevelopmentBoard/ESP32DevelopmentBoard.ino) ([SSL](https://github.com/256dpi/arduino-mqtt/blob/master/examples/ESP32DevelopmentBoard_SSL/ESP32DevelopmentBoard_SSL.ino))
19+
- [Adafruit HUZZAH ESP8266](https://github.com/256dpi/arduino-mqtt/blob/master/examples/AdafruitHuzzahESP8266/AdafruitHuzzahESP8266.ino) ([Secure](https://github.com/256dpi/arduino-mqtt/blob/master/examples/AdafruitHuzzahESP8266Secure/AdafruitHuzzahESP8266Secure.ino))
20+
- [Arduino/Genuino WiFi101 Shield](https://github.com/256dpi/arduino-mqtt/blob/master/examples/ArduinoWiFi101/ArduinoWiFi101.ino) ([Secure](https://github.com/256dpi/arduino-mqtt/blob/master/examples/ArduinoWiFi101Secure/ArduinoWiFi101Secure.ino))
21+
- [Arduino MKR GSM 1400](https://github.com/256dpi/arduino-mqtt/blob/master/examples/ArduinoMKRGSM1400/ArduinoMKRGSM1400.ino) ([Secure](https://github.com/256dpi/arduino-mqtt/blob/master/examples/ArduinoMKRGSM1400Secure/ArduinoMKRGSM1400Secure.ino))
22+
- [ESP32 Development Board](https://github.com/256dpi/arduino-mqtt/blob/master/examples/ESP32DevelopmentBoard/ESP32DevelopmentBoard.ino) ([Secure](https://github.com/256dpi/arduino-mqtt/blob/master/examples/ESP32DevelopmentBoardSecure/ESP32DevelopmentBoardSecure.ino))
2323

2424
Other shields and boards should also work if they provide a [Client](https://www.arduino.cc/en/Reference/ClientConstructor) based network implementation.
2525

@@ -107,7 +107,7 @@ void begin(const char hostname[], Client &client);
107107
void begin(const char hostname[], int port, Client &client);
108108
```
109109

110-
- Specify port `8883` when using SSL clients for secure connections.
110+
- Specify port `8883` when using secure clients for encrypted connections.
111111
- Local domain names (e.g. `Computer.local` on OSX) are not supported by Arduino. You need to set the IP address directly.
112112

113113
The hostname and port can also be changed after calling `begin()`:

0 commit comments

Comments
 (0)