data: fix typo in nodes schema to fix #1

This commit is contained in:
l5y
2025-09-13 09:14:14 +02:00
parent f94beeda47
commit e67a96d3d1
2 changed files with 2 additions and 3 deletions
+1 -2
View File
@@ -68,11 +68,10 @@ def snapshot_nodes_periodically(iface: MeshInterface, every_sec=30):
def main():
iface = SerialInterface(devPath="/dev/ttyACM0")
# optional: also update on any incoming nodeinfo packets via onReceive if you want
threading.Thread(target=snapshot_nodes_periodically, args=(iface, 30), daemon=True).start()
print("Nodes ingestor running. Ctrl+C to stop.")
try:
while True: time.sleep(60)
while True: time.sleep(300)
except KeyboardInterrupt:
pass