From f40d264343ac260685d07128664e6bfb172b94ec Mon Sep 17 00:00:00 2001 From: jgromes Date: Sun, 5 Sep 2021 12:03:59 +0200 Subject: [PATCH] [HTTP] User SerialModule wrapper --- examples/HTTP/HTTP_Get/HTTP_Get.ino | 2 +- examples/HTTP/HTTP_Post/HTTP_Post.ino | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/HTTP/HTTP_Get/HTTP_Get.ino b/examples/HTTP/HTTP_Get/HTTP_Get.ino index 8a253d45..cea5ead2 100644 --- a/examples/HTTP/HTTP_Get/HTTP_Get.ino +++ b/examples/HTTP/HTTP_Get/HTTP_Get.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/HTTP/HTTP_Post/HTTP_Post.ino b/examples/HTTP/HTTP_Post/HTTP_Post.ino index 9df864c7..0484e2ff 100644 --- a/examples/HTTP/HTTP_Post/HTTP_Post.ino +++ b/examples/HTTP/HTTP_Post/HTTP_Post.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