[modules/octoprint] changed refresh interval to 5 secs.

This commit is contained in:
Bernhard B 2020-05-02 19:03:17 +02:00
parent 5402a0b16f
commit 9dd0eb58eb

View file

@ -57,7 +57,7 @@ class WebcamImagesWorker(threading.Thread):
self.__running = False
class Module(core.module.Module):
@core.decorators.every(minutes=1)
@core.decorators.every(seconds=5)
def __init__(self, config, theme):
super().__init__(config, theme, core.widget.Widget(self.octoprint_status))