我开始用Python编写代码,我刚买了一个蓝牙打印机,将它连接到我的树莓派上,并写了一个代码在上面打印东西。我想知道是否可以更改例如字体系列和大小?
以下是代码:
#! /usr/bin/python
import serial
from time import sleep
bluetoothSerial = serial.Serial("/dev/rfcomm0", baudrate=9600)
testS = "Raspberry-PI Project \nPrinter Test"
testV = input()
bluetoothSerial.write(bytes(testS, 'UTF-8'))
bluetoothSerial.write(bytes(testV, 'UTF-8'))