[modules/octoprint] changed refresh interval to 5 secs.
This commit is contained in:
parent
5402a0b16f
commit
9dd0eb58eb
1 changed files with 1 additions and 1 deletions
|
@ -57,7 +57,7 @@ class WebcamImagesWorker(threading.Thread):
|
||||||
self.__running = False
|
self.__running = False
|
||||||
|
|
||||||
class Module(core.module.Module):
|
class Module(core.module.Module):
|
||||||
@core.decorators.every(minutes=1)
|
@core.decorators.every(seconds=5)
|
||||||
def __init__(self, config, theme):
|
def __init__(self, config, theme):
|
||||||
super().__init__(config, theme, core.widget.Widget(self.octoprint_status))
|
super().__init__(config, theme, core.widget.Widget(self.octoprint_status))
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue