Skip to content

Commit b42c7f0

Browse files
committed
Distinct frequency from 900MHz and 915Mhz devices [Forum](https://www.mischianti.org/forums/topic/e32-915t-and-e32-900t-modules/)
1 parent b390b59 commit b42c7f0

File tree

5 files changed

+7
-4
lines changed

5 files changed

+7
-4
lines changed

LoRa_E220.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* EBYTE LoRa E220 Series
33
*
44
* AUTHOR: Renzo Mischianti
5-
* VERSION: 1.0.7
5+
* VERSION: 1.0.8
66
*
77
* https://www.mischianti.org
88
*

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
- Ebyte LoRa E220 device for Arduino, esp32 or esp8266: WOR microcontroller and esp32 dev v1 shield
2727

2828
## CHANGELOG
29+
- 2023-04-18 1.0.8 Distinct frequency from 900MHz and 915Mhz devices [Forum](https://www.mischianti.org/forums/topic/e32-915t-and-e32-900t-modules/)
2930
- 2023-01-28 1.0.7 Fix UART_PARITY for ESP32 C3
3031
- 2022-09-19 1.0.6 Fix stm32 rogerclerk library xreef/LoRa_E32_Series_Library#48
3132
- 2022-08-31 1.0.5 Fix regression and Minor fix and examples update for Raspberry Pi Pico and STM32

includes/statesNaming.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,10 @@
88
#define OPERATING_FREQUENCY 220
99
#elif defined(FREQUENCY_868)
1010
#define OPERATING_FREQUENCY 850
11-
#elif defined(FREQUENCY_915)
11+
#elif defined(FREQUENCY_900)
1212
#define OPERATING_FREQUENCY 850
13+
#elif defined(FREQUENCY_915)
14+
#define OPERATING_FREQUENCY 900
1315
#else
1416
#define OPERATING_FREQUENCY 410
1517
#endif

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "EByte LoRa E220 library",
3-
"version": "1.0.7",
3+
"version": "1.0.8",
44
"keywords": "LoRa, UART, EByte, esp32, esp8266, stm32, SAMD, Arduino, Raspberry Pi Pico",
55
"description": "Ebyte E220 LoRa (Long Range) library device very cheap and very long range (from 5Km to 10Km). Arduino LoRa EBYTE E220 device library complete and tested with Arduino, esp8266, esp32, STM32 and Raspberry Pi Pico. LLCC68.",
66
"homepage": "https://www.mischianti.org/category/my-libraries/ebyte-lora-e22-devices/",

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=EByte LoRa E220 library
2-
version=1.0.7
2+
version=1.0.8
33
author=Renzo Mischianti <renzo.mischianti@gmail.com>
44
maintainer=Renzo Mischianti <renzo.mischianti@gmail.com>
55
sentence=LoRa EBYTE E220 device library complete and tested with Arduino, esp8266, esp32, STM32 and Raspberry Pi Pico. LLCC68

0 commit comments

Comments
 (0)