-
-
Notifications
You must be signed in to change notification settings - Fork 8
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
A list of issues from a test drive #3
Comments
Ok that's very interesting insights. Thanks so much for the test run. Very surprised with your issues related to key press, that should just work. Maybe you can provide info about terminal app, because I tested that (tbh not on windows) and I didn't have neither duplicates key press nor u/r problems. |
I will have a poke around and see if I can identify the source of the keypress issues. |
Added some tracing events, the keypress events for "Press" and "release" are both causing the selected device to change. I assume this is true for all other cases as well https://github.com/Crzyrndm/blendr/tree/keypress-duplication
|
So with a simple filter to just press events (no release/repeat)
That particular issue has a lot of side effects :/ |
bleplug pairing on windows is done at the OS level which is ... frustrating but anyway Even after pairing I had no characteristics. It seems like there's a missing call to |
Very interesting! I'll debug all of this tonight. That is very helpful! |
Related to the keypress issue crossterm-rs/crossterm#752 |
I think that the resorting issue is particularly troublesome because it is completely unstable. If new devices popping up were added live, even mid-list, that'd be fine. On my system that list updates once per second, always comes out randomly sorted (neither alphabetical nor by RSSI), contains a lot of devices that are not nearby (i.e. that were once connected to and are remembered by bluez, but don't show an RSSI), and the cursor stays at the same line and doesn't move along with the selected device. Until something quite elaborate is established (maybe sorting by rolling-average RSSI where on changes the cursor moves with the selected device), I think it'd be best if that list was append-only for now. |
I fixed a couple of issues mentioned here in v1.0.1:
|
4. Issue mentioned with pairing – I don't think it will be easy to
implement as a part of this library, it should be done on OS level
I agree, this is probably handled well at the OS level -- with bugs
better fixed there than worked around. To give an example, on my Debian
sid system, some connections made the OS's "is that the same number"
dialog pop up. On other occasions, things broke down completely -- but
that also affected other BLE apps, so whatever that was was an OS / tool
bug unrelated (even though possibly triggered by) blendr.
|
This looks like exactly what I needed for a new BLE MCU project I'm developing so fortuitous timing in your release. Testing this out on Windows 10 (terminal didn't matter. Tested with Windows terminal (wt) + powershell 7, wt + windows powershell, wt + cmd, powershell 7 on default host console), I found a couple of immediate issues
Duplicated key presses
All inputs are being duplicated / reacted to twice.
Filtering Example (typed
/test
)This is also present using the arrow keys to navigate the device list so trying to select a device can be very frustrating
Pairing
The device I'm working with requires that the connection is encrypted and blendr (seemingly) doesn't even try to pair. This results in a failed connection which is also not visible inside blendr. It just permanently shows
At the very least "Just Works" pairing would be enough for early dev but support for the full set would be great
https://www.bluetooth.com/blog/bluetooth-pairing-part-4/
Device list re- sorting during scan
During a scan, devices in the discovered list move. This makes connecting to the right one in a busy BLE environment extremely difficult (I have >50 devices in range)
u
andr
keys don't appear to workPotentially this is related to the duplicated input, but right now "Hide unknown" and "restart scan" don't appear to do anything
"Unknown device"
Currently "unknown device" has no identity information. I have a couple of devices that are only identified by the fixed 48-bit MAC address. They're not standards compliant in any way, they're just known test addresses in my "lab" for running on device BLE checks against.
Would be good to be able to filter by MAC as well as displaying it. Some of my devices have duplicate names (for... reasons)
Characteristic Notification/Indication history
I haven't got this far yet (see pairing) and this is a bit of a wishlist item, but one thing I would really like to have is a log of (multiple) characteristic notifications. Several sensors I use transmit updates at a moderate frequency via notifications and being able to observe/record the history would be great
The text was updated successfully, but these errors were encountered: