RadioLib
Universal wireless communication library for Arduino
HC05.h
1 #if !defined(_RADIOLIB_HC05_H) && !defined(RADIOLIB_EXCLUDE_HC05)
2 #define _RADIOLIB_HC05_H
3 
4 #include "../../ISerial.h"
5 
12 class HC05: public ISerial {
13  public:
19  HC05(Module* mod);
20 
26  void begin(long speed);
27 };
28 
29 #endif
HC05::begin
void begin(long speed)
Initialization method.
Definition: HC05.cpp:8
ISerial
Interface class for Arduino Serial. Only calls the appropriate methods for the active UART interface.
Definition: ISerial.h:11
HC05
Control class for HC05 module. Most methods supported by this module are implemented in ISerial inter...
Definition: HC05.h:12
Module
Implements all common low-level SPI/UART/I2C methods to control the wireless module....
Definition: Module.h:17
HC05::HC05
HC05(Module *mod)
Default constructor.
Definition: HC05.cpp:4