From 8c66edc03edd1611252de385e9f8988f9d21b0c4 Mon Sep 17 00:00:00 2001 From: jgromes Date: Sun, 5 Sep 2021 12:04:05 +0200 Subject: [PATCH] [MQTT] User SerialModule wrapper --- examples/MQTT/MQTT_Publish/MQTT_Publish.ino | 2 +- examples/MQTT/MQTT_Subscribe/MQTT_Subscribe.ino | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/MQTT/MQTT_Publish/MQTT_Publish.ino b/examples/MQTT/MQTT_Publish/MQTT_Publish.ino index 1dc25099..faf8817d 100644 --- a/examples/MQTT/MQTT_Publish/MQTT_Publish.ino +++ b/examples/MQTT/MQTT_Publish/MQTT_Publish.ino @@ -19,7 +19,7 @@ // ESP8266 has the following connections: // TX pin: 9 // RX pin: 8 -ESP8266 wifi = new Module(9, 8); +ESP8266 wifi = new SerialModule(9, 8); // or using RadioShield // https://github.com/jgromes/RadioShield diff --git a/examples/MQTT/MQTT_Subscribe/MQTT_Subscribe.ino b/examples/MQTT/MQTT_Subscribe/MQTT_Subscribe.ino index c06bc758..093eb02e 100644 --- a/examples/MQTT/MQTT_Subscribe/MQTT_Subscribe.ino +++ b/examples/MQTT/MQTT_Subscribe/MQTT_Subscribe.ino @@ -19,7 +19,7 @@ // ESP8266 has the following connections: // TX pin: 9 // RX pin: 8 -ESP8266 wifi = new Module(9, 8); +ESP8266 wifi = new SerialModule(9, 8); // or using RadioShield // https://github.com/jgromes/RadioShield