RadioLib
Universal wireless communication library for Arduino
ExternalRadio.h
1 #if !defined(_RADIOLIB_EXTERNAL_RADIO_H)
2 #define _RADIOLIB_EXTERNAL_RADIO_H
3 
4 #include "../../TypeDef.h"
5 #include "../../Module.h"
6 
7 #include "../PhysicalLayer/PhysicalLayer.h"
8 
9 class ExternalRadio: public PhysicalLayer {
10  public:
11  ExternalRadio();
12  Module* getMod();
13  private:
14  Module* mod;
15 };
16 
17 #endif
Definition: ExternalRadio.h:9
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:16
Provides common interface for protocols that run on LoRa/FSK modules, such as RTTY or LoRaWAN....
Definition: PhysicalLayer.h:14