File tree 1 file changed +4
-11
lines changed
1 file changed +4
-11
lines changed Original file line number Diff line number Diff line change @@ -121,22 +121,15 @@ void MicroOLED::spiBlockTransfer(uint8_t data, uint16_t len)
121
121
122
122
void MicroOLED ::i2cScan ()
123
123
{
124
- for (uint8_t address = 1 ; address < 128 ; ++ address )
124
+ for (uint8_t address = I2C_ADDRESS_SA0_0 ; address <= I2C_ADDRESS_SA0_1 ; ++ address )
125
125
{
126
126
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 );
132
128
133
129
if (device_found )
134
130
{
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 ;
140
133
}
141
134
}
142
135
You can’t perform that action at this time.
0 commit comments