From 0faa11e8aff24fff40c820a00edc7f9e6e9ef479 Mon Sep 17 00:00:00 2001 From: Marco Schwartz Date: Wed, 26 May 2021 08:01:21 +0200 Subject: [PATCH] fixes for cloud examples --- aREST.h | 3 ++- examples/ESP8266_cloud/ESP8266_cloud.ino | 3 --- examples/Ethernet_cloud/Ethernet_cloud.ino | 3 --- library.properties | 2 +- 4 files changed, 3 insertions(+), 8 deletions(-) diff --git a/aREST.h b/aREST.h index 7341870..298bf2e 100644 --- a/aREST.h +++ b/aREST.h @@ -7,9 +7,10 @@ This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License: http://creativecommons.org/licenses/by-sa/4.0/ - Version 2.9.1 + Version 2.9.2 Changelog: + Version 2.9.2: Fixes for cloud examples Version 2.9.1: Compatibility fix for the new aREST cloud broker (Aedes) Version 2.9.0: Compatibility fix for the new aREST cloud server Version 2.8.1: Updated examples with publish() diff --git a/examples/ESP8266_cloud/ESP8266_cloud.ino b/examples/ESP8266_cloud/ESP8266_cloud.ino index a63d4ea..5f1ec66 100644 --- a/examples/ESP8266_cloud/ESP8266_cloud.ino +++ b/examples/ESP8266_cloud/ESP8266_cloud.ino @@ -64,9 +64,6 @@ void setup(void) Serial.println(""); Serial.println("WiFi connected"); - // Set output topic - char* out_topic = rest.get_topic(); - } void loop() { diff --git a/examples/Ethernet_cloud/Ethernet_cloud.ino b/examples/Ethernet_cloud/Ethernet_cloud.ino index 61f0394..df3008d 100644 --- a/examples/Ethernet_cloud/Ethernet_cloud.ino +++ b/examples/Ethernet_cloud/Ethernet_cloud.ino @@ -53,9 +53,6 @@ void setup(void) Serial.println("Failed to configure Ethernet using DHCP"); } - // Set output topic - char* out_topic = rest.get_topic(); - } void loop() { diff --git a/library.properties b/library.properties index 4091e22..a7a1c68 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=aREST -version=2.9.1 +version=2.9.2 author=Marco Schwartz maintainer=Marco Schwartz sentence=RESTful API for the Arduino platform.