This commit is contained in:
2024-05-30 17:43:45 +02:00
parent 42248456d8
commit 2b9bacf0a4
2 changed files with 14 additions and 2 deletions

9
python/src/loop.py Normal file
View File

@@ -0,0 +1,9 @@
from time import sleep
from discovery import start_discovery
def start_loop(interval=60):
while True:
start_discovery()
sleep(interval)