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
Since the write-protect option has been added there are 2 begin() calls.
bool begin(uint8_t deviceAddress = 0b1010000, TwoWire &wirePort = Wire); // By default use the Wire port
bool begin(uint8_t deviceAddress = 0b1010000, TwoWire &wirePort = Wire, uint8_t WP = 255); // By default use the Wire port
The compiler is now confused about which one to select hence the failure.
Since the write-protect option has been added there are 2 begin() calls.
bool begin(uint8_t deviceAddress = 0b1010000, TwoWire &wirePort = Wire); // By default use the Wire port
bool begin(uint8_t deviceAddress = 0b1010000, TwoWire &wirePort = Wire, uint8_t WP = 255); // By default use the Wire port
The compiler is now confused about which one to select hence the failure.
see: https://forum.sparkfun.com/viewtopic.php?f=102&t=61337
Solution :
Remove the original begin() call (the one without WP) reference in the header and CPP file.
The text was updated successfully, but these errors were encountered: