GUI: upped status polling to 500ms due to potential network issues.

This commit is contained in:
appleb_m
2025-12-22 09:39:13 +01:00
parent 735ec7514b
commit bbc409eb81
+1 -1
View File
@@ -43,7 +43,7 @@ class DAQWorker(QObject):
self.__base_url = base_url
self.__net_manager = QNetworkAccessManager()
self.__timer = QTimer()
self.__timer.setInterval(200)
self.__timer.setInterval(500)
self.__timer.timeout.connect(self.regular_update)
self.__timer.start()
self.__counter = 0