Skip to content

Commit 7f11934

Browse files
committed
added example to README
1 parent 384e7ca commit 7f11934

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

‎README.md‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ The following examples show how you can use the library with various Arduino com
3333
- [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))
3434
- [Arduino MKR NB 1500](https://github.com/256dpi/arduino-mqtt/blob/master/examples/ArduinoMKRNB1500/ArduinoMKRNB1500.ino)
3535
- [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))
36+
- [ESP8266 Development Board](https://github.com/256dpi/arduino-mqtt/blob/master/examples/ESP8266DevelopmentBoard/ESP8266DevelopmentBoard.ino)
3637

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

‎examples/ESP8266DevelopmentBoard/ESP8266DevelopmentBoard.ino‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
#include <ESP8266WiFi.h>
1212
#include <MQTT.h>
1313

14-
const char ssid[] = "Zest";
15-
const char pass[] = "#zestubud";
14+
const char ssid[] = "";
15+
const char pass[] = "";
1616

1717
WiFiClient net;
1818
MQTTClient client;

0 commit comments

Comments
 (0)