-
Notifications
You must be signed in to change notification settings - Fork 51
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Application does not detect networked printer #116
Comments
Ya, currently only printing via USB is supported. However thanks to the recent work of @tomers I think we're getting close to being able to work with networked printers.
Does it work for you with |
The Dymo SDK is a mess. But you can get it working with this SDK. Will post details later. |
OK, here i go. (I have the lablelwriter 500 (usb only) The reason behind me telling the SDK is a mess is the following:
It will work for printing then. |
If i use |
Dymoprint without modification won't recognize the 550 since it's not registered in our list of supported products. You can do a development install and add it yourself. To get the device id which is the key in the dict, just run
Here |
For anyone referring in the future |
@jayjayseal, I recently got A DYMO LavelWriter 550 printer, and hopefully I will be able to add support for that model in the near future. |
I'm actually planning to buy a LabelPrinter 550. I hope there is support already. In the meanwhile there is an official driver from Dymo themselves: https://github.com/dymosoftware/Drivers |
Hi,
I have an issue with the application. If i try to print via USB, this works. But i want to use this using a RPI on a network.
I can print to the printer using
printf "lol" | lp -o landscape
and this works by printing from a remote laptop to CUPS (Dymo 550) connected on a RPI (USB).But the application (CLI or GUI) cannot find this printer and error's out with the following error.
`$ dymoprint -qr qrencoded "qr_txt"
No Dymo devices found (expected vendor 0x922)
Unable to open device.
Traceback (most recent call last):
File "/home/user/.local/bin/dymoprint", line 8, in
sys.exit(main())
File "/home/user/.local/pipx/venvs/dymoprint/lib/python3.10/site-packages/dymoprint/command_line.py", line 265, in main
print_label(label_bitmap, margin_px=args.m, tape_size_mm=args.t)
File "/home/user/.local/pipx/venvs/dymoprint/lib/python3.10/site-packages/dymoprint/dymo_print_engines.py", line 324, in print_label
detected_device = detect_device()
File "/home/user/.local/pipx/venvs/dymoprint/lib/python3.10/site-packages/dymoprint/detect.py", line 60, in detect_device
die("Unable to open device.")
File "/home/user/.local/pipx/venvs/dymoprint/lib/python3.10/site-packages/dymoprint/utils.py", line 19, in die
raise RuntimeError(message)
RuntimeError: Unable to open device.
`
The text was updated successfully, but these errors were encountered: