You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The display repeats: "Printer Online \ nWake up ..., Printer Offline \ nSleep Mode ... if in webserver "Display Clock when printer is off" is diabled. (and printer is online)
The problem is probably caused by the following line:
if (displayOn && !printerClient.isPrinting() && !DISPLAYCLOCK) {
instead of this line I think it should:
if (displayOn && !printerClient.isOperational() && !DISPLAYCLOCK) {
Hi Qrome!
The display repeats: "Printer Online \ nWake up ..., Printer Offline \ nSleep Mode ... if in webserver "Display Clock when printer is off" is diabled. (and printer is online)
The problem is probably caused by the following line:
if (displayOn && !printerClient.isPrinting() && !DISPLAYCLOCK) {
instead of this line I think it should:
if (displayOn && !printerClient.isOperational() && !DISPLAYCLOCK) {
Please check if you have time.
printer-monitor/printermonitor/printermonitor.ino
Line 1294 in a9a0348
The text was updated successfully, but these errors were encountered: