-
-
Notifications
You must be signed in to change notification settings - Fork 47
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
Web Bluetooth support and GATT #172
Comments
@clemos , You are correct: Web Bluetooth only supports BLE. Which is incompatible with BlueDot as it uses the Serial Port Profile from Bluetooth Classic. Various hardware has implemented the Nordic UART Service (or similar) as a way emulate UART/Serial Port over BLE but that would be a major change to how BlueDot works. |
unable to install bluedot on raspberry pi 5 by using sudo pip3 install bluedot × This environment is externally managed If you wish to install a non-Debian-packaged Python package, For more information visit http://rptl.io/venv note: If you believe this is a mistake, please contact your Python installation or OS distribution provider. You can override this, at the risk of breaking your Python installation or OS, by passing --break-system-packages. even if I us sudo apt install or sudo apt get it shows Reading package lists... Done |
Installing a Python module system-wide with Pip is a bad idea, and it's warning you not to do that. It's safer and more useful to install it into a virtual environment.
|
when I put this code bd = BlueDot() while True: in shell it shows
|
Your code's not right - Python is whitespace sensitive. Looking at your code (pasted above), it should look like this:
Here, take a look at this - it's some code I wrote a while back that uses Bluedot. It mighht help: https://github.com/virtadpt/pwnagotchi-bt-power |
@virtadpt thanks for posting! I'm probably going to steal your idea/approach in https://github.com/virtadpt/pwnagotchi-bt-power for shutting down a music radio device I built, very neat idea! |
Hi there 👋
I love BlueDot, and wanted to contribute a web client using Web Bluetooth.
I've made a few tests (I'm not particularily an expert in Bluetooth in general), and it seems it is not possible to connect from Web Bluetooth to a service that is not advertised by the device's GATT server, and it seems BlueDot is not visible to Web Bluetooth for that reason.
Can you confirm my conclusions ? And if so, do you have any idea how one could support this feature ?
Thanks
The text was updated successfully, but these errors were encountered: