We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents dc5f592 + a14cc4f commit ae904f6Copy full SHA for ae904f6
1 file changed
meshtastic/mesh_interface.py
@@ -715,9 +715,8 @@ def _startHeartbeat(self):
715
716
def callback():
717
self.heartbeatTimer = None
718
- prefs = self.localNode.localConfig
719
- i = prefs.power.ls_secs / 2
720
- logging.debug(f"Sending heartbeat, interval {i}")
+ i = 300
+ logging.debug(f"Sending heartbeat, interval {i} seconds")
721
if i != 0:
722
self.heartbeatTimer = threading.Timer(i, callback)
723
self.heartbeatTimer.start()
0 commit comments