Releases: adafruit/TinyLoRa
Releases · adafruit/TinyLoRa
1.4.2 Bump version in library.properties
1.4.1 - Updated CI Actions versions
Update CI action versions
1.4.0 - Added to GitHub Actions
fix badge
Add SetPower
- #30, Adds
SetPower
function. Thanks @clavisound- Users can optionally call
lora.setPower(17);
to set +17dBm, orlora.setPower(-80)
for -80dBm.
- Users can optionally call
Set TheThingsNetwork regions from code
- Regional plans can now be defined from the sketch, instead of editing the library files. Thanks @nerdyscout!
Usage example for setting TheThingsNetwork EU-863MHz frequency plan:
#define EU863
#include <TinyLoRa.h>
ESP32 Compatibility
- #28 Patch for using TinyLoRa on ESP32 devices, thanks @nerdyscout!
Add Support for FramePort
- Added support for sending FramePort (0 to 255, compatible with TheThingsNetwork). Thanks @clavisound
Remove extra pinout in examples
- Fixes extra Feather M0 pinout in DHT example.
BREAKING RELEASE: Adding RST Pin
BREAKING RELEASE:
The TinyLoRa function signature has been changed to from:
TinyLoRa lora = TinyLoRa(irq, cs);
to:
TinyLoRa lora = TinyLoRa(irq, cs, rst);
Release Notes:
- Resets the RFM9x module before attempting to read the RFM9x RegVersion. Prevents chip from starting/reading in bad state.
- Examples have been changed to reflect the addition of the RST pin.
1.0.6
Minor bugfixes, thanks @arjanmels!
- Fixes _sf, _bw, _modemcfg assignments
- Added missing SPI.endTransaction() calls, fixes issue with ESP32.