Skip to content

Commit c76dded

Browse files
committed
fix/speedup i2cScan function
1 parent 1dc93f9 commit c76dded

File tree

1 file changed

+4
-11
lines changed

1 file changed

+4
-11
lines changed

src/hardware.h

+4-11
Original file line numberDiff line numberDiff line change
@@ -121,22 +121,15 @@ void MicroOLED::spiBlockTransfer(uint8_t data, uint16_t len)
121121

122122
void MicroOLED::i2cScan()
123123
{
124-
for (uint8_t address = 1; address < 128; ++address)
124+
for (uint8_t address = I2C_ADDRESS_SA0_0; address <= I2C_ADDRESS_SA0_1; ++address)
125125
{
126126
SFE_MicroOLED_Wire.beginTransmission(address);
127-
SFE_MicroOLED_Wire.write((uint8_t)0); // register 0
128-
SFE_MicroOLED_Wire.endTransmission();
129-
uint8_t device_found =
130-
(SFE_MicroOLED_Wire.requestFrom(address, 1) == 1); // read 1 byte of data
131-
SFE_MicroOLED_Wire.endTransmission();
127+
bool device_found = (SFE_MicroOLED_Wire.endTransmission() == 0);
132128

133129
if (device_found)
134130
{
135-
if ((address == I2C_ADDRESS_SA0_0) || (address == I2C_ADDRESS_SA0_1))
136-
{
137-
_i2c_address = address;
138-
return;
139-
}
131+
_i2c_address = address;
132+
return;
140133
}
141134
}
142135

0 commit comments

Comments
 (0)