Merge from master #5

Merged
logan merged 65 commits from master into NoiseGateV2 2022-02-27 21:47:09 -05:00
Showing only changes of commit 44e6deef3d - Show all commits

View File

@@ -1,6 +1,6 @@
import threading
import subprocess
import time
import asyncio
import os
@@ -45,7 +45,8 @@ class OP25Handler: #(threading.Thread):
if seconds_waited % 5 == 0:
print("Terminating OP25")
self.OP25Proc.terminate()
time.sleep(1)
asyncio.sleep(5)
print(f"Waited {seconds_waited} seconds")
seconds_waited += 1
except Exception as e: