mirror of
https://github.com/richonguzman/LoRa_APRS_iGate.git
synced 2026-03-28 16:52:33 +01:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3cc8fed15f | ||
|
|
725be9fed5 | ||
|
|
16d9ef1c06 |
@@ -54,6 +54,7 @@ ____________________________________________________
|
||||
|
||||
## Timeline (Versions):
|
||||
|
||||
- 2025-04-20000000
|
||||
- 2025.03.20 Manager List added to enable/disable DigiEcoMode and Tx Control. Thanks LB5JJ.
|
||||
- 2025.03.03 T-Beam Supreme board added and more BlackList rules added.
|
||||
- 2025.02.28 Heltec Wireless Paper with Epaper working. Thanks SzymonPriv for pointing to the right library.
|
||||
|
||||
@@ -48,7 +48,7 @@ ___________________________________________________________________*/
|
||||
#endif
|
||||
|
||||
|
||||
String versionDate = "2025-04-24";
|
||||
String versionDate = "2025-04-25";
|
||||
Configuration Config;
|
||||
WiFiClient espClient;
|
||||
#ifdef HAS_GPS
|
||||
@@ -205,9 +205,8 @@ void loop() {
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// HWT not sleeping!
|
||||
// ESP32 (and ESPS3) work?
|
||||
|
||||
// ESP32C3 :
|
||||
// - HT-CT62 ??
|
||||
// - and others?
|
||||
// - HT-CT62 sleeps??
|
||||
// - and others?
|
||||
@@ -371,17 +371,6 @@ namespace APRS_IS_Utils {
|
||||
listenAPRSIS();
|
||||
}
|
||||
}
|
||||
if (Config.digi.ecoMode == 1) {
|
||||
displayToggle(false);
|
||||
#ifdef VEXT_CTRL
|
||||
#if defined(HELTEC_WIRELESS_TRACKER) || defined(HELTEC_V3)
|
||||
digitalWrite(VEXT_CTRL, LOW);
|
||||
#endif
|
||||
#if defined(HELTEC_WP) || defined(HELTEC_WS) || defined(HELTEC_V3_2)
|
||||
digitalWrite(VEXT_CTRL, HIGH);
|
||||
#endif
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
@@ -223,13 +223,15 @@ namespace POWER_Utils {
|
||||
}
|
||||
|
||||
#ifdef VEXT_CTRL
|
||||
pinMode(VEXT_CTRL,OUTPUT); // GPS + TFT on HELTEC Wireless_Tracker and only for Oled in HELTEC V3
|
||||
#if defined(HELTEC_WIRELESS_TRACKER) || defined(HELTEC_V3)
|
||||
digitalWrite(VEXT_CTRL, HIGH);
|
||||
#endif
|
||||
#if defined(HELTEC_WP) || defined(HELTEC_WS) || defined(HELTEC_V3_2)
|
||||
digitalWrite(VEXT_CTRL, LOW);
|
||||
#endif
|
||||
if (Config.digi.ecoMode != 1) {
|
||||
pinMode(VEXT_CTRL,OUTPUT); // GPS + TFT on HELTEC Wireless_Tracker and only for Oled in HELTEC V3
|
||||
#if defined(HELTEC_WIRELESS_TRACKER) || defined(HELTEC_V3)
|
||||
digitalWrite(VEXT_CTRL, HIGH);
|
||||
#endif
|
||||
#if defined(HELTEC_WP) || defined(HELTEC_WS) || defined(HELTEC_V3_2)
|
||||
digitalWrite(VEXT_CTRL, LOW);
|
||||
#endif
|
||||
}
|
||||
#endif
|
||||
|
||||
#ifdef HAS_GPS
|
||||
|
||||
@@ -88,7 +88,7 @@ namespace Utils {
|
||||
}
|
||||
|
||||
void setupDisplay() {
|
||||
displaySetup();
|
||||
if (Config.digi.ecoMode != 1) displaySetup();
|
||||
#ifdef INTERNAL_LED_PIN
|
||||
digitalWrite(INTERNAL_LED_PIN,HIGH);
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user