Richard Beattie

Results 11 comments of Richard Beattie

I was having a go at it and came up with [this](https://github.com/richardbeattie/react-step-progress/commit/f0c68ec0164d739df40f8f66ff03362879b782bb). It needs some work and refinements, but it gets the gist of the proposal.

> any progress on this one? I really love the progress bar itself and don't need the buttons, so would like to remove the buttons completely. Any idea on how...

I've experienced the same issue, what solved it for me was using `useRef` for example ```javascript const [isValid, setIsValid] = useState(false) const curIsValid = useRef(isValid); curIsValid.current = isValid; const steps...

I've spun up a simple version of [this](https://github.com/richardbeattie/react-step-progress/commit/3900d2b83e0747d13b8bf3e962831208a26157f3), which needs some refactoring but has the main elements.

Hey @saini-g, finally got around to the project I was needing this for sorry for the long delay :) and thanks for looking through this. > one question though, will...

I had Wireshark opened at the same time and it looks like some packets are being dropped. Attached is a file with the faulty packets for **Sphero 1**. What's wrong...

Just to link things together, I found that the BlueZ dbus API is not sending the packets to Bleak – here's the issue on the Bleak repo: https://github.com/hbldh/bleak/issues/1343

Ok it looks like it's a BlueZ issue, I tried using `AcquireNotify` instead of `StartNotify` and it also gives the error (with even less ~5 instead of ~12) simultaneous connections....

Awesome! Also when I was looking at `bleak_adapter.py` I noticed that you're passing the bluetooth device address as opposed to the `BLEDevice` to Bleak Client (e.g. `bleak.BleakClient(address)`). Is there a...