Barry Byford

Results 87 comments of Barry Byford

Another option is: `pip install -e .` This Installs the project in editable mode from the current project repositry. This will link the package to the local files meaning any...

My initial thought on this is that you want something to run after `publish` is terminated. I've done an experiment with a function called `disconnect_all()` ```python # Publish peripheral and...

Hi @Digitelektro, I am very undecided on implementing the pairing agent within the library. It doesn't seem to offer a lot over and above what is available in `bluetoothctl`. Pairing...

If I have understood correctly then your `read_value` function needs to look something like this: ```python def read_value(): cpu_value = random.randrange(3200, 5310, 10) cpu_temp = random.randrange(1, 10000, 48) return struct.pack('

I take you point @Digitelektro about wanting control of the update of the notification. The design idea behind what has been done is to have a property that could be...

This seems like is similar to https://github.com/ukBaz/python-bluezero/issues/266 . I _suspect_ the issue is that the scanning is creating new devices in BlueZ which triggers the `InterfacesAdded` D-Bus signal. The `observer`...

From the start of this project there has always been a philosophy about [complexity](https://github.com/ukBaz/python-bluezero/blob/main/docs/overview.rst#bluezero-api-complexity); that the library would attempt to help people along the learning curve as they learnt about...

A presentation my search engine found for me on this topic: https://ostconf.com/system/attachments/files/000/001/532/original/Linux_Piter_2018_-_New_GPIO_interface_for_linux_userspace.pdf?1541021776 Contains: ![image](https://user-images.githubusercontent.com/8608260/75691169-d9ae8180-5c9b-11ea-9b09-aa289e6f8e1a.png)

Can I gently nod towards https://github.com/intel-iot-devkit/mraa again? It has support for I2C for Raspberry Pi and could be used as a pin factory.

Is the following class not fairly close to what you are looking for? https://github.com/gpiozero/gpiozero/blob/9cba4aa68d02ecdf459c63737a7cd3f6c0eb57ab/gpiozero/spi_devices.py#L276 It has 16-bits and data is in the lower bits. Unfortunately it is only 9-bit resolution....