Colin G(IO)

Results 22 comments of Colin G(IO)

I'm throwing this in the pot as a guess, as I suspect Windows is seeking out a parameter to inform it that you've just inserted a composite device rather than...

I had noticed the question raised about the failure to subscribe on the Arduino Forum and began to investigate. For what it's worth, I discovered that within this function BLERemoteCharacteristic::writeCccd(uint16_t...

Yes, the Nano33 can subscribe to the BBC microbit as the Nano BLE central firmware can loop through the number of descriptors available from the BBC microbit and find 0x2902...

I've discovered that this is not as straightforward as one might think. I created a PSoC4 peripheral with the same GATT service + characteristics as the Bluefruit device but this...

Debug using BLE.debug(Serial) - nano BLE connecting with Bluefruit: Found f7:0f:7f:2d:4e:56 'Adafruit Bluefruit LE' 6e400001-b5a3-f393-e0a9-e50e24dcca9e HCI COMMAND TX -> 010C20020000 HCI EVENT RX 010D2019600030000001564E2D7F0FF70006000C000000C80004000600 HCI EVENT RX

I've found that within the writeValue function (BLERemoteDescriptor), the Bluefruit has resp[0] = 0x01, which triggers an error condition. Not sure what this means though. Trawling through that debug log...

I believe the reason for this is that the RP2040 (ARDUINO_ARCH_RP2040) board is not defined in the header file. However, one wonders if RP2040 PIO functionality might be better suited...

I tested out the `CapacitiveSensor::SenseOneCycle(void)` function using PIO and I think it works pretty well. However, I am unable to validate this... also PIO is restrictive as only have 2...

I couldn't see way to merge my RP2040 PIO based code with this library, so I created a new library (with some improvements and fixes to the above PIO code)...

Hi @facchinm Thanks for your feedback. Yes, I eventually discovered the mbed documentation, which describes the MBED NFC API and where the PN512 module fits. https://github.com/ARMmbed/mbed-os/blob/master/docs/design-documents/nfc/nfc_design.md There may be ways...