The print demo is working well except for the setSize() functions. They always print default/small. I can workaround this by using some different functions, like this:
//printer.setSize('L'); // Not working.
printer.doubleHeightOn();
printer.doubleWidthOn();
printer.println(F("Large workaround"));
printer.doubleHeightOff();
printer.doubleWidthOff();
printer.println(F("Back to default size"));
In case this information is useful, my printer is labelled CSN-A2-T, and reports itself as Version 3.8 2011-09-21.
Thanks for this awesome library :smile:
The print demo is working well except for the
setSize()
functions. They always print default/small. I can workaround this by using some different functions, like this:In case this information is useful, my printer is labelled CSN-A2-T, and reports itself as Version 3.8 2011-09-21.