small typo fix

This commit is contained in:
ladyada 2025-01-05 15:12:13 -05:00
parent e1aa388418
commit 14d379e4d3
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ bool Adafruit_I2CDevice::detected(void) {
_wire->beginTransmission(_addr); _wire->beginTransmission(_addr);
#ifdef DEBUG_SERIAL #ifdef DEBUG_SERIAL
DEBUG_SERIAL.print(F("Address 0x")); DEBUG_SERIAL.print(F("Address 0x"));
DEBUG_SERIAL.print(_addr); DEBUG_SERIAL.print(_addr, HEX);
#endif #endif
if (_wire->endTransmission() == 0) { if (_wire->endTransmission() == 0) {
#ifdef DEBUG_SERIAL #ifdef DEBUG_SERIAL