You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Allows directly printing to the printer through a BlueZ BluetoothSocket without pairing and creating a virtual serial device (/dev/tty* or /dev/rfcomm*). Windows and mac support probably needs some work, but using serial ports are still supported as before.
It works over UI, but it currently throws an async error over CLI when I don't define the device, as it tries to to execute find_default_device without awaiting it, similar errors happen when trying to print using an rfcomm0 device. But I would gladly help there.
Yeah, I am currently working on re-implementing this using using QtBluetooth instead. It uses BlueZ as well, but seems more stable.
Instead of clearing all entries, async polling, and then updating the list, it will add every device as discovered (using signals). That way we don't need to use qasync and we can poll for a long time without having the user wait for the entire poll duration.
Making this draft for now, and probably superseding it for the new branch if no other problems come up.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Allows directly printing to the printer through a BlueZ
BluetoothSocketwithout pairing and creating a virtual serial device (/dev/tty* or /dev/rfcomm*). Windows and mac support probably needs some work, but using serial ports are still supported as before.Fixes #39