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