Adafruit_BusIO icon indicating copy to clipboard operation
Adafruit_BusIO copied to clipboard

Arduino library for I2C & SPI abstractions

Results 11 Adafruit_BusIO issues
Sort by recently updated
recently updated
newest added

`Adafruit_BusIO_Register.h` contains these prototypes: ``` void print(Stream *s = &Serial); void println(Stream *s = &Serial); ``` If I try to configure my platform without a generic Serial instance, then compilation...

``` #ifdef DEBUG_SERIAL DEBUG_SERIAL.print(F("Address 0x")); DEBUG_SERIAL.print(_addr); #endif ``` `_addr` is printed as decimal, so for example a failing LIS3DH init shows as "Address 0x24 Not detected" where it's actually `0x18`...

I am using Raspberry Pi Pico and Adafruit PN532 library and I have problems reading NTAGs (213) with SPI. It only reads UID but not other content. And after some...

adds `SHIFT_ADDR_2BITS_LEFT` to `Adafruit_BusIO_SPIRegType` to cater e.g. MLX90395 in SPI mode.

This is a fix to issue #111 where if `HardwareSerial Serial` is not defined, `Adafruit_BusIO_Register.h` will not be able to find `Serial` and cause compilation to fail. The change only...

- Arduino board: itsy bitsy m0 - Arduino IDE version (found in Arduino -> About Arduino menu): platformio 6.0.2 - List the steps to reproduce the problem below (if possible...

The data is prepared by transmitting the reads and writes in chunks instead of byte for byte. A constant is used for the chunk size. This is a tradeof between...

various small cleanups

This is the [documented way](https://github.com/espressif/arduino-esp32/blob/b2e67ca2785bf666f1715978bb51ebee8be62dab/docs/en/esp-idf_component.rst?plain=1#L257) to reference the `arduino-esp32` component. I believe you must reference it this way to use the [version in IDF component manager](https://components.espressif.com/components/espressif/arduino-esp32/versions/3.0.3).

debug serial data was printing in decimal, when it should have been hex (or alternatively, the "0x" prefix should be removed) before: `Address 0x44 Not detected` after `Address 0x2C Not...