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.h library entry doesn't actually do anything but set internal variables and call twi_init(). The bug you refer to is specific to the esp826 and calling Wire.begin(SDA,SCL) with 2 Parameters for Software i2c, which the INA library doesn't do, it calls Wire.begin() with no Parameters.
If this does actually cause Problems on the ESP2866 then the following could be added to the library:
#ifndef __ESP3288__
Wire.begin()
#endif
(I have to see what the actual library Definition is for the Esplora
I don't have an Esplora to test this with, so if you could check to see if this resolves the issue that would be great. If the error is still present, then we can re-open this issue.
The text was updated successfully, but these errors were encountered: