Skip to content

Commit 65ae1b8

Browse files
authored
Merge pull request #8 from Delph/patch-1
Compilation fix when compiling with DEBUG_SERIAL and DEBUG_EXPANSION_PRINT_ADDRESS
2 parents 7988c58 + 6c2d76f commit 65ae1b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/OptaBlueModule.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ void Module::update() {
273273
if (millis() - start > 1000) {
274274
start = millis();
275275
Serial.print("ADDRESS 0x");
276-
Serial.println(address, HEX);
276+
Serial.println(wire_i2c_address, HEX);
277277
}
278278
#endif
279279
}

0 commit comments

Comments
 (0)