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) {