You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Wire.beginTransmission() and Wire.endTransmission() should only be used when writing data.
I noticed two files where they were used before and after a Wire.requestFrom(). Those can be removed.
Explanation: Common-mistakes, number 2 and 3.
espressif/esp32/arduino/sketchbook/ESP32_SI7060_INA219/i2c_SI7060.cpp (currently at line 31 and 34)
espressif/esp32/arduino/sketchbook/ESP32_i2c_Si7021_oled/ESP32_i2c_Si7021_oled.ino (currently at line 27 and 31).
The text was updated successfully, but these errors were encountered:
The
Wire.beginTransmission()
andWire.endTransmission()
should only be used when writing data.I noticed two files where they were used before and after a
Wire.requestFrom()
. Those can be removed.Explanation: Common-mistakes, number 2 and 3.
The text was updated successfully, but these errors were encountered: