adafruit / Adafruit-Thermal-Printer-Library

Arduino Library for Small Thermal Printers
http://www.adafruit.com/products/600
311 stars 165 forks source link

setSize() has no effect #20

Closed dariancabot closed 3 years ago

dariancabot commented 8 years ago

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:

  //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.

caternuson commented 3 years ago

Closing due to age of issue and not able to reproduce with current library version. Maybe it was something that got fixed?