Skip to content

Releases: adafruit/TinyLoRa

1.4.2 Bump version in library.properties

15 Nov 15:16
1a97372
Compare
Choose a tag to compare

What's Changed

  • Update version number to 1.4.2 by @tyeth in #44

Full Changelog: 1.4.1...1.4.2

1.4.1 - Updated CI Actions versions

22 May 17:05
Compare
Choose a tag to compare
Update CI action versions

1.4.0 - Added to GitHub Actions

19 Jun 02:09
dafdf91
Compare
Choose a tag to compare

Add SetPower

08 Oct 13:52
b04a3b3
Compare
Choose a tag to compare
  • #30, Adds SetPower function. Thanks @clavisound
    • Users can optionally call lora.setPower(17); to set +17dBm, or lora.setPower(-80) for -80dBm.

Set TheThingsNetwork regions from code

07 Oct 17:18
aa28928
Compare
Choose a tag to compare
  • 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

02 Oct 16:02
56395e8
Compare
Choose a tag to compare

Add Support for FramePort

05 Sep 14:17
8f4d005
Compare
Choose a tag to compare
  • Added support for sending FramePort (0 to 255, compatible with TheThingsNetwork). Thanks @clavisound

Remove extra pinout in examples

07 Aug 13:06
77a1fcd
Compare
Choose a tag to compare
  • Fixes extra Feather M0 pinout in DHT example.

BREAKING RELEASE: Adding RST Pin

19 Jul 19:12
17bbcc3
Compare
Choose a tag to compare

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

01 Jul 15:16
Compare
Choose a tag to compare

Minor bugfixes, thanks @arjanmels!

  • Fixes _sf, _bw, _modemcfg assignments
  • Added missing SPI.endTransaction() calls, fixes issue with ESP32.