RadioLib
Universal wireless communication library for Arduino
|
Control class for HC05 module. Most methods supported by this module are implemented in ISerial interface. More...
#include <HC05.h>
Public Member Functions | |
HC05 (Module *mod) | |
Default constructor. More... | |
void | begin (long speed) |
Initialization method. More... | |
![]() | |
ISerial (Module *mod) | |
void | begin (long) |
void | end () |
int | peek () |
size_t | write (uint8_t) |
int | read () |
int | available () |
void | flush () |
size_t | print (const __FlashStringHelper *) |
size_t | print (const String &) |
size_t | print (const char[]) |
size_t | print (char) |
size_t | print (unsigned char, int=DEC) |
size_t | print (int, int=DEC) |
size_t | print (unsigned int, int=DEC) |
size_t | print (long, int=DEC) |
size_t | print (unsigned long, int=DEC) |
size_t | print (double, int=2) |
size_t | print (const Printable &) |
size_t | println (const __FlashStringHelper *) |
size_t | println (const String &s) |
size_t | println (const char[]) |
size_t | println (char) |
size_t | println (unsigned char, int=DEC) |
size_t | println (int, int=DEC) |
size_t | println (unsigned int, int=DEC) |
size_t | println (long, int=DEC) |
size_t | println (unsigned long, int=DEC) |
size_t | println (double, int=2) |
size_t | println (const Printable &) |
size_t | println (void) |
Control class for HC05 module. Most methods supported by this module are implemented in ISerial interface.
HC05::HC05 | ( | Module * | mod | ) |
Default constructor.
mod | Instance of Module that will be used to communicate with the radio. |
void HC05::begin | ( | long | speed | ) |
Initialization method.
speed | Baud rate to use for UART interface. |