Skip to content
This repository was archived by the owner on Jan 6, 2023. It is now read-only.

Commit de457a8

Browse files
committed
Removes rBase64
1 parent 2ada623 commit de457a8

File tree

4 files changed

+3
-6
lines changed

4 files changed

+3
-6
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ Currently, we support the following hardware targets:
2121
## Dependencies
2222
Some examples use specific dependencies that need to be installed via the Arduino Library manager.
2323

24-
* [rBase64](https://github.com/boseji/rBASE64) - Used when encoding `binary_data` payloads
2524
* [lwMQTT](https://github.com/256dpi/arduino-mqtt) - Used in MQTT Esp8266 example
2625

2726
## Quickstart

examples/Esp32-lwmqtt/esp32-mqtt.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
#include <WiFi.h>
1919
#include <WiFiClientSecure.h>
2020

21-
#include <rBase64.h>
2221
#include <MQTT.h>
2322

2423
#include <CloudIoTCore.h>

examples/Esp8266-lwmqtt/esp8266_mqtt.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@
1616
#ifndef __ESP8266_MQTT_H__
1717
#define __ESP8266_MQTT_H__
1818
#include <ESP8266WiFi.h>
19-
#include <WiFiClientSecure.h>
2019
#include "FS.h"
20+
#include <WiFiClientSecure.h>
2121
#include <time.h>
22-
#include <rBase64.h>
23-
#include <CloudIoTCore.h>
22+
2423
#include <MQTT.h>
2524

25+
#include <CloudIoTCore.h>
2626
#include "ciotc_config.h" // Wifi configuration here
2727

2828
// Holds Cloud IoT Core configuration

examples/MKR1000-lwmqtt/mkr1000-mqtt.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
#include <WiFi101.h>
1919
#include <WiFiSSLClient.h>
2020

21-
#include <rBase64.h>
2221
#include <MQTT.h>
2322

2423
#include <CloudIoTCore.h>

0 commit comments

Comments
 (0)