diff options
-rw-r--r-- | backend/app.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/app.py b/backend/app.py index 5b016a3..380db59 100644 --- a/backend/app.py +++ b/backend/app.py @@ -9,7 +9,7 @@ threadFlag = True def playFunction(freq): global threadFlag while not threadFlag: - os.system("beep -f %f" % (freq)) + os.system("beep -f"+ freq) #print("beep -f %f" % (freq)) tc = 0 |