Skip to content

Commit e00f3f5

Browse files
committed
Qrome - changed printer on check from 5 minutes to 2
1 parent 46e70dc commit e00f3f5

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

marquee.ino.d1_mini_2.10.bin

0 Bytes
Binary file not shown.

marquee.ino.d1_mini_wide_2.10.bin

0 Bytes
Binary file not shown.

marquee/marquee.ino

+2-2
Original file line numberDiff line numberDiff line change
@@ -314,11 +314,11 @@ void loop() {
314314
matrix.fillScreen(LOW); // show black
315315
if (OCTOPRINT_ENABLED) {
316316
if (displayOn && ((printerClient.isOperational() || printerClient.isPrinting()) || printerCount == 0)) {
317-
// This should only get called if the printer is actually running or if it has been 5 minutes
317+
// This should only get called if the printer is actually running or if it has been 2 minutes since last check
318318
printerClient.getPrinterJobResults();
319319
}
320320
printerCount += 1;
321-
if (printerCount > 5) {
321+
if (printerCount > 2) {
322322
printerCount = 0;
323323
}
324324
}

0 commit comments

Comments
 (0)