From 06f3023f2a8055af0ca352efa33c08a2fcbc4acd Mon Sep 17 00:00:00 2001 From: jgromes Date: Sun, 5 Sep 2021 12:01:08 +0200 Subject: [PATCH] [HC05] Use SerialModule wrapper --- examples/HC05/HC05_Basic/HC05_Basic.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/HC05/HC05_Basic/HC05_Basic.ino b/examples/HC05/HC05_Basic/HC05_Basic.ino index dc7790be..fc7ad4c7 100644 --- a/examples/HC05/HC05_Basic/HC05_Basic.ino +++ b/examples/HC05/HC05_Basic/HC05_Basic.ino @@ -15,7 +15,7 @@ // HC05 has the following connections: // TX pin: 9 // RX pin: 8 -HC05 bluetooth = new Module(9, 8); +HC05 bluetooth = new SerialModule(9, 8); // or using RadioShield // https://github.com/jgromes/RadioShield