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