version update

This commit is contained in:
richonguzman 2024-01-05 19:01:48 -03:00
parent 65d0e12c19
commit 5e41111da8
3 changed files with 5 additions and 5 deletions

View file

@ -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.

View file

@ -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

View file

@ -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];