From 2e85c23cbd1c74b7c8ea39e5c5214ad17afa5971 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Grome=C5=A1?= Date: Wed, 11 Jul 2018 17:41:01 +0200 Subject: [PATCH] HC05 - Updated comments --- examples/HC05/HC05.ino | 3 ++- src/modules/HC05.h | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/examples/HC05/HC05.ino b/examples/HC05/HC05.ino index 2d5021e4..26f817e7 100644 --- a/examples/HC05/HC05.ino +++ b/examples/HC05/HC05.ino @@ -15,7 +15,8 @@ HC05 bluetooth = Kite.ModuleA; void setup() { Serial.begin(9600); - // initialize HC05 with baudrate 9600 baud + // initialize HC05 + // baudrate: 9600 baud bluetooth.begin(9600); } diff --git a/src/modules/HC05.h b/src/modules/HC05.h index 5bb2b4b1..0459d934 100644 --- a/src/modules/HC05.h +++ b/src/modules/HC05.h @@ -5,8 +5,10 @@ class HC05: public ISerial { public: + // constructor HC05(Module* module); + // basic methods void begin(long speed); };