[HC05] Changed pin mapping

This commit is contained in:
jgromes 2019-12-27 13:18:59 +01:00
parent b8459a58ad
commit 7cc765debb

View file

@ -1,11 +1,11 @@
#include "HC05.h"
HC05::HC05(Module* mod) : ISerial(mod) {
}
void HC05::begin(long speed) {
// set module properties
_mod->baudrate = speed;
_mod->init(RADIOLIB_USE_UART, RADIOLIB_INT_NONE);
_mod->init(RADIOLIB_USE_UART);
}