From 21ec3d44bdb0db99f9518925c21ef6f0e32448b1 Mon Sep 17 00:00:00 2001 From: Boba0514 <32554590+Boba0514@users.noreply.github.com> Date: Wed, 12 Aug 2020 19:28:07 +0200 Subject: [PATCH] fixed errors Europe's designated LoRa frequency is actually 868MHz and 500Mhz bandwidth is also supported by the library --- API.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/API.md b/API.md index 78f054d..2d86815 100644 --- a/API.md +++ b/API.md @@ -15,7 +15,7 @@ Initialize the library with the specified frequency. ```arduino LoRa.begin(frequency); ``` - * `frequency` - frequency in Hz (`433E6`, `866E6`, `915E6`) + * `frequency` - frequency in Hz (`433E6`, `868E6`, `915E6`) Returns `1` on success, `0` on failure. @@ -308,7 +308,7 @@ LoRa.setSignalBandwidth(signalBandwidth); * `signalBandwidth` - signal bandwidth in Hz, defaults to `125E3`. -Supported values are `7.8E3`, `10.4E3`, `15.6E3`, `20.8E3`, `31.25E3`, `41.7E3`, `62.5E3`, `125E3`, and `250E3`. +Supported values are `7.8E3`, `10.4E3`, `15.6E3`, `20.8E3`, `31.25E3`, `41.7E3`, `62.5E3`, `125E3`, `250E3`, and `500E3`. ### Coding Rate