RadioLib
Universal wireless communication library for Arduino
|
1 #if !defined(_RADIOLIB_SI4432_H)
2 #define _RADIOLIB_SI4432_H
4 #include "../../TypeDef.h"
6 #if !defined(RADIOLIB_EXCLUDE_SI443X)
8 #include "../../Module.h"
47 int16_t
begin(
float freq = 434.0,
float br = 48.0,
float freqDev = 50.0,
float rxBw = 181.1, int8_t power = 10, uint8_t preambleLen = 16);
70 #if !defined(RADIOLIB_GODMODE)
74 #if !defined(RADIOLIB_GODMODE)
int16_t begin(float freq=434.0, float br=48.0, float freqDev=50.0, float rxBw=181.1, int8_t power=10, uint8_t preambleLen=16)
Initialization method. Must be called at least once from Arduino sketch to initialize the module.
Definition: Si4432.cpp:8
Derived class for Si4432 modules.
Definition: Si4432.h:16
int16_t setFrequency(float freq)
Sets carrier frequency. Allowed values range from 240.0 MHz to 930.0 MHz.
Definition: Si4432.cpp:24
int16_t setOutputPower(int8_t power)
Sets output power. Allowed values range from -1 to 20 dBm in 3 dBm steps.
Definition: Si4432.cpp:31
Si4432(Module *mod)
Default constructor.
Definition: Si4432.cpp:4
Implements all common low-level SPI/UART/I2C methods to control the wireless module....
Definition: Module.h:17
Base class for Si443x series. All derived classes for Si443x (e.g. Si4431 or Si4432) inherit from thi...
Definition: Si443x.h:554