1
0
Переглянути джерело

Reduce sleep time in idle state in microphones loop to 0.005

miguel_bengala 1 рік тому
батько
коміт
1766f540b0
2 змінених файлів з 2 додано та 2 видалено
  1. 1 1
      controllers/microphones.ipynb
  2. 1 1
      controllers/microphones.py

+ 1 - 1
controllers/microphones.ipynb

@@ -101,7 +101,7 @@
     "                        f.write(MicrophoneController.queue.get())\n",
     "\n",
     "                    else:\n",
-    "                        time.sleep(0.01)\n",
+    "                        time.sleep(0.005)\n",
     "                except KeyboardInterrupt:\n",
     "                    stream.stop()\n",
     "                    stream.close()\n",

+ 1 - 1
controllers/microphones.py

@@ -56,7 +56,7 @@ class MicrophoneController(FPSTimes):
                         f.write(MicrophoneController.queue.get())
 
                     else:
-                        time.sleep(0.01)
+                        time.sleep(0.005)
                 except KeyboardInterrupt:
                     stream.stop()
                     stream.close()