1#if !defined(_RADIOLIB_SI4432_H)
2#define _RADIOLIB_SI4432_H
4#include "../../TypeDef.h"
6#if !RADIOLIB_EXCLUDE_SI443X
8#include "../../Module.h"
38 virtual int16_t
begin(
float freq = 434.0,
float br = 4.8,
float freqDev = 5.0,
float rxBw = 181.1, int8_t power = 10, uint8_t preambleLen = 16);
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition Module.h:73
Derived class for Si4432 modules.
Definition Si4432.h:15
int16_t setOutputPower(int8_t power) override
Sets output power. Allowed values range from -1 to 20 dBm in 3 dBm steps.
Definition Si4432.cpp:31
virtual int16_t begin(float freq=434.0, float br=4.8, float freqDev=5.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
int16_t setFrequency(float freq) override
Sets carrier frequency. Allowed values range from 240.0 MHz to 930.0 MHz.
Definition Si4432.cpp:24
Base class for Si443x series. All derived classes for Si443x (e.g. Si4431 or Si4432) inherit from thi...
Definition Si443x.h:553