Browse Source

execute the planner every minute

Sven Czarnian 3 years ago
parent
commit
aaa37a5f62
1 changed files with 8 additions and 0 deletions
  1. 8 0
      aman/sys/Worker.py

+ 8 - 0
aman/sys/Worker.py

@@ -1,6 +1,7 @@
 #!/usr/bin/env python
 
 import threading
+import time
 
 from aman.config.Airport import Airport
 
@@ -16,6 +17,13 @@ class Worker(threading.Thread):
         self.stopThread = True
 
     def run(self):
+        counter = 0
+
         while None == self.stopThread:
+            time.sleep(1)
+            counter += 1
+            if 0 != (counter % 60):
+                continue
+
             # TODO execute planning, etc.
             continue