Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
57 views

I will provide my code. The primary purpose of this is vehicle identification. My only hypothesis is my laptop having multiple Bluetooth signals but it seems to happen for other devices as well. This ...
GeneralAMC's user avatar
1 vote
1 answer
188 views

I want to send serial data with a BT05 serial Bluetooth LE device from a microcontroller to a Raspberry Pi 5 with Linux 6.6.51+rpt-rpi-2712. On the raspi I use the latest newest Python bleak version ...
Detlef Schücker's user avatar
0 votes
0 answers
57 views

I'm using bleak and winRT to write a python application. In this application the device should be paired and connected to a Windows Pc automatically after providing mac address and PIN. The connection ...
newuser's user avatar
0 votes
0 answers
81 views

I'm currently am using python with bleak and I'm finding it difficult to connect and maintain a stable connection to multiple Bluetooth enabled imu devices (muse), especially when trying to connect ...
Michael Pekelis's user avatar
1 vote
1 answer
549 views

In the following Python code, whether or not the line from pygrabber.dshow_graph import FilterGraph is included determines whether an error occurs. If I do not include it, no error appears, but if I ...
taichi's user avatar
  • 683
0 votes
2 answers
80 views

I need to perform a series of read/write tasks inside a ctypes callback function, but still inside an async task that is responsible for giving such read/write tasks: async def main(ble_address): ...
Caian's user avatar
  • 491
1 vote
2 answers
877 views

I have a Tkinter program that uses several libraries (matplotlib, numpy, pygame, …) as well as the bleak BLE library. I create an exe on windows using PyInstaller and most of the program works ...
DrCoolZic's user avatar
1 vote
1 answer
268 views

I am a beginner with BLE/Bluetooth. I am trying to communicate with a BLE enabled device, which is using a CH9141K BLE-to-serial bridge. I've got my host application successfully talking to the device ...
user1387's user avatar
  • 199
0 votes
0 answers
57 views

I have a BLE device. I want to connect to it, run all my tests then deconnect. Here is what versions I'm using: bleak: "0.22.2"; bleak-winrt: "1.2.0"; python_full_version: "3....
Evan Clausse's user avatar
0 votes
1 answer
972 views

How can I pair a bluetooth device using bleak I have developed a code for scanning of bluetooth devices nearby how can I pair devices. This is a code written to scan bluetooth devices from bleak ...
Subzee's user avatar
  • 73
0 votes
0 answers
146 views

Problem: Connecting to a BTLE device succeeds about 1 out of 10 times. How can I improve this and reliably connect to the device? I have a Sensirion SHT41x that I want to access via Bluetooth from my ...
Dr-Nuke's user avatar
  • 398
2 votes
0 answers
584 views

I’m new to Bluetooth in Python so I’m not sure how to best phrase my question. The task I need to achieve, is I want to know whether a certain phone is in my vicinity through Bluetooth. I read Bleak’s ...
Jeswin Sunsi's user avatar
1 vote
1 answer
2k views

I'm attempting to read some characteristics from a Bluetooth device. The device requires a Pin to pair but I can't find any resources on how to enter a pin with python-bleak. My code is below. It will ...
Dave1551's user avatar
  • 363