mirror of
https://github.com/richonguzman/LoRa_APRS_iGate.git
synced 2026-02-11 10:15:20 +01:00
telemetry conf packet start after first beacon
This commit is contained in:
parent
c3d94d673a
commit
d54b63df22
|
|
@ -195,7 +195,12 @@ namespace Utils {
|
|||
if (beaconUpdate) {
|
||||
if (!Config.display.alwaysOn && Config.display.timeout != 0) displayToggle(true);
|
||||
|
||||
if (sendStartTelemetry && Config.battery.sendVoltageAsTelemetry && !Config.wxsensor.active && (Config.battery.sendInternalVoltage || Config.battery.sendExternalVoltage)) {
|
||||
if (sendStartTelemetry &&
|
||||
Config.battery.sendVoltageAsTelemetry &&
|
||||
!Config.wxsensor.active &&
|
||||
(Config.battery.sendInternalVoltage || Config.battery.sendExternalVoltage) &&
|
||||
(lastBeaconTx > 0)) {
|
||||
//(!Config.digi.ecoMode || lastBeaconTx > 0)) {
|
||||
sendInitialTelemetryPackets();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue