thermy.py is a command-line interface for ultra-cheap mini thermal printers, commonly found on platforms like AliExpress. These compact printers — often shaped like cute animals such as cats — are inexpensive, highly portable, and surprisingly useful for everyday tasks such as printing receipts, notes, labels, QR codes, and more.
This tool brings full printing capability to the Linux terminal, allowing you to send both text and image files to supported Bluetooth-enabled thermal printers without needing a graphical interface or browser. Whether you’re working with a headless device like an Orange Pi or simply prefer the CLI, this script makes thermal printing accessible and powerful.
It is built upon the core protocol and communication logic of the kitty-printer web project and reuses its reliable Python-based Bluetooth communication module. Ideal for makers, POS experiments, DIY logging stations, or lightweight print automation projects.
- Text Printing: Print text with configurable font size
- Image Printing: Print PNG, JPG, and other image formats
- QR Code Printing: Generate and print QR codes from text or URLs
- File Support: Print from text files
- Bluetooth Discovery: Scan for compatible thermal printers
- Compatible Protocol: Uses the same protocol as kitty-printer web project
- Proven Bluetooth: Reuses reliable Bluetooth communication from thermal_printer.py
The same models supported by the original projects:
- XW Series: XW001, XW002, XW003, XW004, XW005, XW006, XW007, XW008, XW009
- JX Series: JX001, JX002, JX003, JX004, JX005, JX006
- Other Models: M01, PR02, PR07, GB01, GB02, GB03, GB04, LY01, LY02, LY03, LY10, AI01, GT01, MX10
The list lives in config.json (supported_printers) — see Configuration to add a new model without touching the code.
- Linux System: Debian 12 (Orange Pi) or compatible
- Python: 3.11 or higher
- Bluetooth: Built-in or USB Bluetooth adapter
- Thermal Printer: One of the supported models
Install required system packages on Debian 12:
sudo apt update
sudo apt install python3 python3-pip python3-venv bluetooth bluezAdd your user to the Bluetooth group:
sudo usermod -a -G bluetooth $USER
# Log out and log back in, or use: newgrp bluetoothEnable and start Bluetooth service:
# Start Bluetooth service
sudo systemctl start bluetooth
# Enable Bluetooth to start automatically
sudo systemctl enable bluetooth
# Check Bluetooth status
sudo systemctl status bluetoothCreate and activate a virtual environment:
python3 -m venv tp_env
source tp_env/bin/activateInstall Python packages:
pip install -r requirements.txtchmod +x thermy.pyCheck if everything is working:
python3 thermy.py --check-requirementsRuntime settings live in config.json, alongside thermy.py. The script loads it automatically on startup; CLI flags (e.g. --font-size, --speed) still override the file when given.
Point at a different file with --config:
python3 thermy.py --config /path/to/my-config.json --scan| Key | Purpose |
|---|---|
supported_printers |
Bluetooth name prefixes the scanner accepts. Add new models here. |
bluetooth.write_uuids / service_uuids |
GATT UUIDs probed when connecting. |
bluetooth.scan_timeout_seconds |
How long --scan listens for advertisements. |
bluetooth.connect_timeout_seconds |
Timeout for the initial GATT connect. |
bluetooth.device |
Default device address used when --device is not given. |
printer.paper_width |
Paper width in pixels (most cat printers = 384). |
printer.mtu |
Bluetooth write buffer size. |
printer.default_model |
Model name used when initializing the protocol; affects compression. Use GB03 or any MX* to enable the "new model" code path. |
printer.extra_feed |
Extra paper fed after each job. |
print_defaults.font_size / speed / energy / align |
Defaults for the matching CLI flags. |
fonts |
Ordered list of font file paths; first one that loads is used. |
qr.box_size / border |
QR module size (pixels per dot) and quiet-zone width. |
Protocol-level constants (CRC table, command bytes, lattice payloads) are not in the config — they are part of the cat-printer protocol spec and live in code.
If you have a printer whose name prefix isn't in the default list, append it to supported_printers:
"supported_printers": [
"XW001", "...", "C9",
"YOUR_MODEL"
]Then run --scan again.
Always run this first if you encounter issues:
python3 thermy.py --check-requirementsFind available thermal printers:
python3 thermy.py --scanThis will show compatible printers with their Bluetooth addresses:
Found compatible printer: GB01: AA:BB:CC:DD:EE:FF
Found compatible printer: MX10: 28:03:08:58:C5:65
Print text directly:
python3 thermy.py --text "Hello, World!" --device AA:BB:CC:DD:EE:FFPrint text with custom font size:
python3 thermy.py --text "Large Text" --font-size 24 --device AA:BB:CC:DD:EE:FFPrint text with different alignments:
# Left-aligned text
python3 thermy.py --text "Left\nAligned\nText" --align left --device AA:BB:CC:DD:EE:FF
# Center-aligned text (default)
python3 thermy.py --text "Center\nAligned\nText" --align center --device AA:BB:CC:DD:EE:FF
# Right-aligned text
python3 thermy.py --text "Right\nAligned\nText" --align right --device AA:BB:CC:DD:EE:FFPrint text with inverted colors (white text on black background):
# Normal text: black text on white background
python3 thermy.py --text "Normal Text" --device AA:BB:CC:DD:EE:FF
# Inverted text: white text on black background
python3 thermy.py --text "HIGHLIGHTED\nTEXT" --invert --device AA:BB:CC:DD:EE:FF
# Large inverted label
python3 thermy.py --text "WARNING" --invert --font-size 32 --align center --device AA:BB:CC:DD:EE:FFPrint text with borders/frames:
# Thin border (1px)
python3 thermy.py --text "Thin\nBorder" --border 1 --device AA:BB:CC:DD:EE:FF
# Medium border (3px)
python3 thermy.py --text "Medium\nBorder" --border 3 --device AA:BB:CC:DD:EE:FF
# Thick border (5px)
python3 thermy.py --text "Thick\nBorder" --border 5 --device AA:BB:CC:DD:EE:FF
# Extra thick border (10px)
python3 thermy.py --text "VERY\nTHICK" --border 10 --device AA:BB:CC:DD:EE:FF
# Inverted text with border
python3 thermy.py --text "DANGER" --invert --border 5 --font-size 24 --device AA:BB:CC:DD:EE:FFPrint contents of a text file:
python3 thermy.py --file document.txt --device AA:BB:CC:DD:EE:FFGenerate and print a QR code from text or a URL:
# Print a QR code for a URL
python3 thermy.py --qr "https://example.com" --device AA:BB:CC:DD:EE:FF
# Print a QR code for plain text
python3 thermy.py --qr "Hello, scan me!" --device AA:BB:CC:DD:EE:FFPrint an image file (PNG, JPG, etc.):
python3 thermy.py --image photo.jpg --device AA:BB:CC:DD:EE:FFPrint with custom speed and energy settings:
python3 thermy.py --text "High Quality" --speed 20 --energy 10000 --device AA:BB:CC:DD:EE:FF--speed: Print speed (10-90, lower = better quality, default: 35)--energy: Energy level (default: 8000)--font-size: Font size for text (default: 16)--align: Text alignment - left, center, or right (default: center)--invert: Invert colors - white text on black background--border: Add border frame around text - 1-10 pixels thick
python3 thermy.py [OPTIONS]
Options:
--config PATH Path to config file (default: config.json next to script)
--scan, -s Scan for available printers
--text TEXT, -t TEXT Text to print
--file FILE, -f FILE Text file to print
--image IMAGE, -i IMAGE Image file to print
--qr TEXT Generate and print a QR code from text/URL
--device ADDRESS, -d ADDRESS Bluetooth device address (default from config)
--font-size SIZE Font size for text (default from config)
--align {left,center,right} Text alignment (default from config)
--invert Invert colors: white text on black background
--border {1-10} Add border frame (1-10 pixels thick)
--speed SPEED Print speed 10-90 (default from config)
--energy ENERGY Energy level (default from config)
--check-requirements Check system requirements
--help, -h Show help message# Find your printer
python3 thermy.py --scan
# Print simple text
python3 thermy.py --text "Receipt #12345" --device AA:BB:CC:DD:EE:FF
# Print a file
python3 thermy.py --file receipt.txt --device AA:BB:CC:DD:EE:FF
# Print an image
python3 thermy.py --image logo.png --device AA:BB:CC:DD:EE:FF
# Print a QR code
python3 thermy.py --qr "https://example.com" --device AA:BB:CC:DD:EE:FF# Large bold text
python3 thermy.py --text "IMPORTANT NOTICE" --font-size 32 --device AA:BB:CC:DD:EE:FF
# Left-aligned multiline text
python3 thermy.py --text "HELLO\nWORLD\n!" --font-size 72 --align left --device AA:BB:CC:DD:EE:FF
# Right-aligned receipt header
python3 thermy.py --text "Receipt #12345\nDate: 2024-01-01" --align right --device AA:BB:CC:DD:EE:FF
# Inverted text for highlights and labels
python3 thermy.py --text "WARNING\nHOT SURFACE" --invert --font-size 32 --align center --device AA:BB:CC:DD:EE:FF
# Bordered warning label
python3 thermy.py --text "DANGER\nHIGH VOLTAGE" --border 5 --invert --font-size 24 --device AA:BB:CC:DD:EE:FF
# Simple framed receipt header
python3 thermy.py --text "RECEIPT" --border 3 --align center --font-size 20 --device AA:BB:CC:DD:EE:FF
# QR code for WiFi sharing
python3 thermy.py --qr "WIFI:T:WPA;S:MyNetwork;P:MyPassword;;" --device AA:BB:CC:DD:EE:FF
# High quality image (slower)
python3 thermy.py --image photo.jpg --speed 20 --energy 10000 --device AA:BB:CC:DD:EE:FF
# Receipt with mixed styles (bordered header, normal items)
python3 thermy.py --text "STORE NAME" --font-size 24 --align center --border 3 --device AA:BB:CC:DD:EE:FF
python3 thermy.py --text "Item 1: $10\nItem 2: $15\nTotal: $25" --align left --device AA:BB:CC:DD:EE:FFSince development and testing will be performed only on the Orange Pi (the only device with Bluetooth), here's how to test the functionality:
# Check all requirements
python3 thermy.py --check-requirements
# Test Bluetooth scanning
python3 thermy.py --scan# Test connection (replace with your printer's address)
python3 thermy.py --text "Connection Test" --device AA:BB:CC:DD:EE:FF# Test text printing
python3 thermy.py --text "Text Test - Hello World!" --device AA:BB:CC:DD:EE:FF
# Test file printing
echo "File test content" > test.txt
python3 thermy.py --file test.txt --device AA:BB:CC:DD:EE:FF
# Test QR code printing
python3 thermy.py --qr "https://example.com" --device AA:BB:CC:DD:EE:FF
# Test image printing (create a small test image first)
python3 thermy.py --image test_image.png --device AA:BB:CC:DD:EE:FF
# Test different font sizes
python3 thermy.py --text "Small" --font-size 12 --device AA:BB:CC:DD:EE:FF
python3 thermy.py --text "Large" --font-size 24 --device AA:BB:CC:DD:EE:FF
# Test print quality settings
python3 thermy.py --text "High Quality" --speed 20 --energy 10000 --device AA:BB:CC:DD:EE:FF# Test with invalid device address
python3 thermy.py --text "Test" --device 00:00:00:00:00:00
# Test with non-existent file
python3 thermy.py --file nonexistent.txt --device AA:BB:CC:DD:EE:FF
# Test with invalid image
python3 thermy.py --image nonexistent.jpg --device AA:BB:CC:DD:EE:FF"Bluetooth support not available" Error:
pip install bleakUseful Bluetooth utilities
bluetoothctl list # List local bluetooth interfaces
bluetoothctl # Enter the bluetooth client - or use inline commands
power on # Turn bluetooth interface on - or inline "bluetoothctl power on"
scan on # Scan devices around - or inline "bluetoothctl scan on"
scan off # Turn off the scan after get the device add ("bluetoothctl scan off")
info <mac add> # Show specific device information "bluetoothctl info <mac add>"
pair <mac add> # Pair with the device
trust <mac add> # Trust the device
connect <mac add> # Connect to the device
exit # Exit cli
# Example in a bash script:
#!/usr/bin/bash
bluetoothctl power on
bluetoothctl trust <mac add>
bluetoothctl disconnect <mac add>
bluetoothctl connect <mac add>
"No compatible thermal printers found" during scan:
- Make sure your printer is powered on
- Put the printer in pairing/discoverable mode
- Move closer to the printer
- Check if the printer model is supported
Connection failures:
- Verify the device address is correct
- Try restarting the Bluetooth service:
sudo systemctl restart bluetooth - Make sure you're in the bluetooth group:
groups $USER
"Permission denied" errors:
sudo usermod -a -G bluetooth $USER
newgrp bluetooth # Or log out and log back inFaded or unclear prints:
- Increase energy level:
--energy 10000 - Decrease speed:
--speed 20 - Check if printer paper is fresh
Image not printing correctly:
- Make sure image file exists and is readable
- Try converting image to PNG first
- Check image resolution (too high resolution may cause issues)
This CLI script uses the CRC8 Calculation based on cat-protocol.ts:
The Bluetooth communication reuses the proven implementation from several projects for bluetooth thermal printers:
- Service Discovery: Automatic discovery of compatible printers
- Characteristic Detection: Automatic detection of write characteristics
- Error Handling: Comprehensive error handling for connection issues
- UUID Support: Multiple UUID variants for different printer models
- Automatic Resizing: Images are automatically resized to fit paper width
- Aspect Ratio: Maintained during resizing
- Centering: Smaller images are centered on the paper
- Format Support: PNG, JPG, and other PIL-supported formats
The script is designed for compatibility with:
- Python: 3.11+ (as available on Debian 12)
- bleak: 0.21.1+ (Bluetooth Low Energy)
- Pillow: 10.0.0+ (Image processing)
- qrcode: 7.4+ (QR code generation)
These versions are tested to work reliably on Debian 12 (Orange Pi) systems.
