RadioLib
Universal wireless communication library for Arduino
SX1276.h
1 #if !defined(_RADIOLIB_SX1276_H)
2 #define _RADIOLIB_SX1276_H
3 
4 #include "../../TypeDef.h"
5 
6 #if !RADIOLIB_EXCLUDE_SX127X
7 
8 #include "SX1278.h"
9 
14 class SX1276: public SX1278 {
15  public:
16 
17  // constructor
18 
23  SX1276(Module* mod); // cppcheck-suppress noExplicitConstructor
24 
25  // basic methods
26 
41  int16_t begin(float freq = 434.0, float bw = 125.0, uint8_t sf = 9, uint8_t cr = 7, uint8_t syncWord = RADIOLIB_SX127X_SYNC_WORD, int8_t power = 10, uint16_t preambleLength = 8, uint8_t gain = 0);
42 
55  int16_t beginFSK(float freq = 434.0, float br = 4.8, float freqDev = 5.0, float rxBw = 125.0, int8_t power = 10, uint16_t preambleLength = 16, bool enableOOK = false);
56 
57  // configuration methods
58 
64  int16_t setFrequency(float freq) override;
65 
72  int16_t setModem(ModemType_t modem) override;
73 
74 #if !RADIOLIB_GODMODE
75  private:
76 #endif
77 
78 };
79 
84 RADIOLIB_TYPE_ALIAS(SX1276, RFM95)
85 
86 
90 RADIOLIB_TYPE_ALIAS(SX1276, RFM96)
91 
92 #endif
93 
94 #endif
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:73
Only exists as alias for SX1276, since there seems to be no difference between RFM95 and SX1276 modul...
Only exists as alias for SX1276, since there seems to be no difference between RFM96 and SX1276 modul...
Derived class for SX1276 modules. Overrides some methods from SX1278 due to different parameter range...
Definition: SX1276.h:14
int16_t setModem(ModemType_t modem) override
Set modem for the radio to use. Will perform full reset and reconfigure the radio using its default p...
Definition: SX1276.cpp:82
SX1276(Module *mod)
Default constructor. Called from Arduino sketch when creating new LoRa instance.
Definition: SX1276.cpp:4
int16_t setFrequency(float freq) override
Sets carrier frequency. Allowed values range from 137.0 MHz to 1020.0 MHz.
Definition: SX1276.cpp:71
int16_t begin(float freq=434.0, float bw=125.0, uint8_t sf=9, uint8_t cr=7, uint8_t syncWord=RADIOLIB_SX127X_SYNC_WORD, int8_t power=10, uint16_t preambleLength=8, uint8_t gain=0)
LoRa modem initialization method. Must be called at least once from Arduino sketch to initialize the ...
Definition: SX1276.cpp:8
int16_t beginFSK(float freq=434.0, float br=4.8, float freqDev=5.0, float rxBw=125.0, int8_t power=10, uint16_t preambleLength=16, bool enableOOK=false)
FSK modem initialization method. Must be called at least once from Arduino sketch to initialize the m...
Definition: SX1276.cpp:40
Derived class for SX1278 modules. Also used as base class for SX1276, SX1277, SX1279,...
Definition: SX1278.h:105