├── .gitignore ├── Adafruit_Thermal.py ├── README.md ├── calibrate.py ├── datetime.py ├── forecast.py ├── gfx ├── __init__.py ├── adalogo.py ├── adaqrcode.py ├── goodbye.png ├── hello.png ├── sudoku.png └── timetemp.png ├── main.py ├── printertest.py ├── sudoku-gfx.py ├── sudoku-txt.py ├── timetemp.py └── twitter.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Python-Thermal-Printer/HEAD/.gitignore -------------------------------------------------------------------------------- /Adafruit_Thermal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Python-Thermal-Printer/HEAD/Adafruit_Thermal.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Python-Thermal-Printer/HEAD/README.md -------------------------------------------------------------------------------- /calibrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Python-Thermal-Printer/HEAD/calibrate.py -------------------------------------------------------------------------------- /datetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Python-Thermal-Printer/HEAD/datetime.py -------------------------------------------------------------------------------- /forecast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Python-Thermal-Printer/HEAD/forecast.py -------------------------------------------------------------------------------- /gfx/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Python-Thermal-Printer/HEAD/gfx/__init__.py -------------------------------------------------------------------------------- /gfx/adalogo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Python-Thermal-Printer/HEAD/gfx/adalogo.py -------------------------------------------------------------------------------- /gfx/adaqrcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Python-Thermal-Printer/HEAD/gfx/adaqrcode.py -------------------------------------------------------------------------------- /gfx/goodbye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Python-Thermal-Printer/HEAD/gfx/goodbye.png -------------------------------------------------------------------------------- /gfx/hello.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Python-Thermal-Printer/HEAD/gfx/hello.png -------------------------------------------------------------------------------- /gfx/sudoku.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Python-Thermal-Printer/HEAD/gfx/sudoku.png -------------------------------------------------------------------------------- /gfx/timetemp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Python-Thermal-Printer/HEAD/gfx/timetemp.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Python-Thermal-Printer/HEAD/main.py -------------------------------------------------------------------------------- /printertest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Python-Thermal-Printer/HEAD/printertest.py -------------------------------------------------------------------------------- /sudoku-gfx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Python-Thermal-Printer/HEAD/sudoku-gfx.py -------------------------------------------------------------------------------- /sudoku-txt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Python-Thermal-Printer/HEAD/sudoku-txt.py -------------------------------------------------------------------------------- /timetemp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Python-Thermal-Printer/HEAD/timetemp.py -------------------------------------------------------------------------------- /twitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Python-Thermal-Printer/HEAD/twitter.py --------------------------------------------------------------------------------