RadioLib
Universal wireless communication library for Arduino
Loading...
Searching...
No Matches
Si4432.h
1#if !defined(_RADIOLIB_SI4432_H)
2#define _RADIOLIB_SI4432_H
3
4#include "../../TypeDef.h"
5
6#if !RADIOLIB_EXCLUDE_SI443X
7
8#include "../../Module.h"
9#include "Si443x.h"
10
15class Si4432: public Si443x {
16 public:
17
18 // constructor
19
24 Si4432(Module* mod); // cppcheck-suppress noExplicitConstructor
25
26 // basic methods
27
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);
39
40 // configuration methods
41
47 int16_t setFrequency(float freq) override;
48
54 int16_t setOutputPower(int8_t power) override;
55
56#if !RADIOLIB_GODMODE
57 protected:
58#endif
59
60#if !RADIOLIB_GODMODE
61 private:
62#endif
63};
64
65#endif
66
67#endif
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