Carter Nelson

Results 295 comments of Carter Nelson

> Can you confirm the library is compatible with the i2c multiplexer? Yes. ![si4713_tca](https://user-images.githubusercontent.com/8755041/164254042-96eb0baf-e7d0-4e6f-aca7-bdf1bed22dfe.jpg) ```cpp #include #define RESETPIN 7 #define TCAADDR 0x70 #define FMSTATION 10230 Adafruit_Si4713 radio = Adafruit_Si4713(RESETPIN); void...

Try one of the Adafruit boards without the TCA to verify it nominally works as expected per the guide: https://learn.adafruit.com/adafruit-si4713-fm-radio-transmitter-with-rds-rdbs-support/test-and-usage Then, if possible, remove your TCA breakout from the custom...

The datasheet has information about SPI clock timing. Max freq depends on VDD, but shouldn't be over 3.6MHz. Minimum freq is ~10kHz: ![image](https://user-images.githubusercontent.com/8755041/129947517-1eb82cf7-4279-4528-a18a-08ec61bea704.png)

There's a link to the datasheet on the product page: https://www.adafruit.com/product/856 Here's the Microchip (makers of the MCP3008) product page which also has a link: https://www.microchip.com/en-us/product/MCP3008 It sounds like you...

Ideally, the missing capabilities would be provided by new public methods that then use the protected methods. Can you restate the issue in terms of missing capabilities? Like "enable free...

It'd be good to first open an issue to state the general problem. That would allow discussion to be had about approaches for solving. Then a PR could be made...

Please update to the 2.1.0 release and see if that resolves this issue: https://github.com/adafruit/Adafruit_BMP3XX/releases/tag/2.1.0

Closing. Support for using more than one BMP3xx sensor was added with #19. An example sketch showing usage was added with #29. Please open new issue(s) for anything else.

Closing. Custom pins should be set external to this library. See previous comment.

I've repeated this with a test setup using a Pi4. Tried hardware I2C speeds of 10kHz and 400kHz and it did not help. Also tried a software I2C setup: ```...