David Lechner

Results 1570 comments of David Lechner

Step 6 is jut pairing, so it is expected to not stay connected after that step. Step 7 is where the network connection is made. If the *Network Connection* button...

It has been a while since I've done this, but I think you can use `bluetoothctl` to list the services provided by the adapter. The PAN (personal area network) service...

There is a known problem with recent versions of Etcher, but if other flashers aren't working either, then either you flashed the zip file as a raw file to the...

I think you might need to set the mode of the port to "nxt-analog" instead of "ev3-analog".

After looking at [the docs](http://www.mindsensors.com/pdfs/GroveSensorAdapter-User-Guide.pdf), I see the sensor adapter is an I2C device itself and not just a passthrough device. So you will need set the mode of the...

Yes, that looks like the correct mode for PiStorms.

> Is it possible to at least have something like the `TYPE_CHECKING` property from the `typing` module so we can use autocompletion/typechecking in our code without the performance reduction and...

A quick github search for `TYPE_CHECKING` in Python files show 210k hits vs 3.1 million for `typing`, so not super-common, I guess. But useful when you want to avoid unnecessary...

Which sensors have you analyzed? Sending only the ACK at the end is typical for the newer Powered Up UART devices. The comments about `BYTE_SYNC` might have been inferred from...

> the checksum-after-SYNC bug I suspect we will find that it is really checksum-after-ACK bug and I just had the terminology confused when I first started working on this 10...