From 14d379e4d362eb93ec2419e5d9a86efc44d4aadd Mon Sep 17 00:00:00 2001 From: ladyada Date: Sun, 5 Jan 2025 15:12:13 -0500 Subject: [PATCH] small typo fix --- Adafruit_I2CDevice.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Adafruit_I2CDevice.cpp b/Adafruit_I2CDevice.cpp index 92c1731..88e9b3c 100644 --- a/Adafruit_I2CDevice.cpp +++ b/Adafruit_I2CDevice.cpp @@ -69,7 +69,7 @@ bool Adafruit_I2CDevice::detected(void) { _wire->beginTransmission(_addr); #ifdef DEBUG_SERIAL DEBUG_SERIAL.print(F("Address 0x")); - DEBUG_SERIAL.print(_addr); + DEBUG_SERIAL.print(_addr, HEX); #endif if (_wire->endTransmission() == 0) { #ifdef DEBUG_SERIAL