Carter Nelson

Results 30 issues of Carter Nelson

Re this thread: https://forums.adafruit.com/viewtopic.php?t=205469 These examples: https://github.com/adafruit/Adafruit_Learning_System_Guides/tree/main/PiCowbell_Adalogger_Examples Looks like the layout for the CircuitPython PCF8523 library changed, so the import syntax needs updating.

This library currently requires **both** `SPI` and `Wire` to be present for *any* target board. This can cause build failures for targets that only have one or the other. Ex:...

Re this thread: https://forums.adafruit.com/viewtopic.php?f=58&t=174956#p854766 The `samples` parameter for `readCap()` does not appear to be used for the CPX using FreeTouch.

This library implement its own PCA9685 interface with code in the `utlility` directory. Some of that conflicts with the separate PCA9685 library [Adafruit-PWM-Servo-Driver-Library](https://github.com/adafruit/Adafruit-PWM-Servo-Driver-Library) which throws compiler warns when the two...

Re this thread: https://forums.adafruit.com/viewtopic.php?p=942135 The preproc logic works, but the resulting `spi` is not used in the ctor's. Needs to be `SPI1` for CPX. But library ends up trying to...

This library is sort of half way there? `Adafruit_EPD` is using BusIO: https://github.com/adafruit/Adafruit_EPD/blob/f711ec80ca6eb1b3dc170bc4f8e03c287638ec25/src/Adafruit_EPD.h#L29 but not `Adafruit_MCPSRAM`: https://github.com/adafruit/Adafruit_EPD/blob/f711ec80ca6eb1b3dc170bc4f8e03c287638ec25/src/Adafruit_MCPSRAM.h#L2 Also, `Adafruit BusIO` is not currently listed as a dependency in `library.properties`.

There's this other library which already uses BusIO: https://github.com/adafruit/Adafruit-BMP085-Library Convert this one too?

Test sketch below. Output when run with a CPX+TFT Gizmo is: ![image](https://user-images.githubusercontent.com/8755041/78586044-af4a6980-77ef-11ea-8a86-a563339e73a2.png) so it appears it's not even returning from the call to `arcadaBegin()`. Sanity checked with a PyBadge, which...

Add a shake detection function based on the wake feature support added by #8. See also #9 for some other relevant discussion.

https://github.com/adafruit/Adafruit_BusIO