From 5e41111da83bd76ba8fae1a18b8d208c0eadeecc Mon Sep 17 00:00:00 2001 From: richonguzman Date: Fri, 5 Jan 2024 19:01:48 -0300 Subject: [PATCH] version update --- README.md | 4 ++-- platformio.ini | 4 ++-- src/LoRa_APRS_iGate.cpp | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 9f73291..3bf8c4f 100644 --- a/README.md +++ b/README.md @@ -60,9 +60,9 @@ ____________________________________________________ ____________________________________________________ ## Timeline (Versions): -- 2024.01.03 Added support for Lilygo TTGO T-Beam V1, V1.2, V1 + SX1268, V1.2 + SX1262. +- 2024.01.05 Added support for Lilygo TTGO T-Beam V1, V1.2, V1 + SX1268, V1.2 + SX1262. - 2024.01.02 Added support for EByte 400M30S 1Watt LoRa module for DIY ESP32 iGate. -- 2023.12.27 HELTEC V3 board support added. +- 2023.12.27 HELTEC V3 board support added. Thanks Luc ON2ON. - 2023.12.26 Added BME680 module to BME/BMP280 modules supported. - 2023.12.20 Updated to ElegantOTA v.3 (AsyncElegantOTA was deprecated). - 2023.12.07 MIC-E process and syslog added. diff --git a/platformio.ini b/platformio.ini index 5176c73..5121c5b 100644 --- a/platformio.ini +++ b/platformio.ini @@ -37,8 +37,8 @@ build_flags = -Werror -Wall -DTTGO_T_LORA32_V2_1 -DELEGANTOTA_USE_ASYNC_WEBSERVE board = ttgo-lora32-v21 build_flags = -Werror -Wall -DHELTEC_V2 -DELEGANTOTA_USE_ASYNC_WEBSERVER=1 -[env:heltec_wifi_kit_32_V3] -board = heltec_wifi_kit_32_V3 +[env:heltec_wifi_lora_32_V3] +board = heltec_wifi_lora_32_V3 build_flags = -Werror -Wall -DHELTEC_V3 -DELEGANTOTA_USE_ASYNC_WEBSERVER=1 board_build.mcu = esp32s3 diff --git a/src/LoRa_APRS_iGate.cpp b/src/LoRa_APRS_iGate.cpp index e15fe23..6f29002 100644 --- a/src/LoRa_APRS_iGate.cpp +++ b/src/LoRa_APRS_iGate.cpp @@ -20,7 +20,7 @@ Configuration Config; WiFiClient espClient; -String versionDate = "2024.01.03"; +String versionDate = "2024.01.05"; int myWiFiAPIndex = 0; int myWiFiAPSize = Config.wifiAPs.size(); WiFi_AP *currentWiFi = &Config.wifiAPs[myWiFiAPIndex];