HC05 - Updated comments

This commit is contained in:
Jan Gromeš 2018-07-11 17:41:01 +02:00
parent 8770d82534
commit 2e85c23cbd
2 changed files with 4 additions and 1 deletions

View file

@ -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);
}

View file

@ -5,8 +5,10 @@
class HC05: public ISerial {
public:
// constructor
HC05(Module* module);
// basic methods
void begin(long speed);
};