Chat here about code rewrites, mods, etc... with respect to the github project https://github.com/esp8266/Arduino

Moderator: igrr

User avatar
By certeza
#57461 For anyone wanting to create a wifi thermal printer, you can now use the Adafruit-Thermal-Printer-Library.
But you need to change the code for the timeoutWait function
from:
Code: Select allwhile((long)(micros() - resumeTime) < 0L); // (syntax is rollover-proof)

to:
Code: Select alldelay(10);