RadioLib
Universal wireless communication library for Arduino
LLCC68.h
1 #if !defined(_RADIOLIB_LLCC68_H)
2 #define _RADIOLIB_LLCC68_H
3 
4 #include "../../TypeDef.h"
5 
6 #if !defined(RADIOLIB_EXCLUDE_SX126X)
7 
8 #include "../../Module.h"
9 #include "../SX126x/SX1262.h"
10 
16 class LLCC68: public SX1262 {
17  public:
23  LLCC68(Module* mod);
24 
25  // configuration methods
26 
34  int16_t setBandwidth(float bw);
35 
43  int16_t setSpreadingFactor(uint8_t sf);
44 
45 #if !defined(RADIOLIB_GODMODE)
46  private:
47 #endif
48 
49 };
50 
51 #endif
52 
53 #endif
LLCC68::setSpreadingFactor
int16_t setSpreadingFactor(uint8_t sf)
Sets LoRa spreading factor. Allowed values range from 5 to 11, depending on currently set spreading f...
Definition: LLCC68.cpp:13
LLCC68
Derived class for LLCC68 modules.
Definition: LLCC68.h:16
LLCC68::setBandwidth
int16_t setBandwidth(float bw)
Sets LoRa bandwidth. Allowed values are 125.0, 250.0 and 500.0 kHz.
Definition: LLCC68.cpp:8
Module
Implements all common low-level SPI/UART methods to control the wireless module. Every module class c...
Definition: Module.h:17
SX1262
Derived class for SX1262 modules.
Definition: SX1262.h:19
LLCC68::LLCC68
LLCC68(Module *mod)
Default constructor.
Definition: LLCC68.cpp:4