diff --git a/README.md b/README.md index fdac5d7..dd1eefa 100644 --- a/README.md +++ b/README.md @@ -145,6 +145,9 @@ You can also use the tool `brother_ql_print` (Py3 only) to send the instructions brother_ql_print --backend network 720x151_monochrome.bin tcp://192.168.0.23:9100 # or (requires PyUSB: `pip install pyusb`) brother_ql_print 720x151_monochrome.bin usb://0x04f9:0x2015 + # or if you have multiple ones connected: + brother_ql_print 720x151_monochrome.bin usb://0x04f9:0x2015/000M6Z401370 + # where 000M6Z401370 is the serial number (see lsusb output). If your printer has problems printing the instructions file, it may blink its LED (green or red) depending on the model. This can have many reasons, eg.: diff --git a/brother_ql/backends/pyusb.py b/brother_ql/backends/pyusb.py index 512b555..926f399 100755 --- a/brother_ql/backends/pyusb.py +++ b/brother_ql/backends/pyusb.py @@ -59,7 +59,7 @@ class BrotherQLBackendPyUSB(BrotherQLBackendGeneric): def __init__(self, device_specifier): """ device_specifier: string or pyusb.core.Device: string descriptor of the \ - format usb://brother_ql/idVendor/idProduct/iSerialNumber or pyusb.core.Device instance. + format usb://idVendor:idProduct/iSerialNumber or pyusb.core.Device instance. """ self.dev = None