The Qwiic EEPROM module has some design flaws. One is debatable and one is really a design mistake:
-
I would argue, it would be better for the WP pin to be pulled-up to 3V3 by default, because then, if you disconnect the WP wire, you achieved read-only, and if you want to write to the memory, just pull the pin to GND. This would make more sense, in my opinion. (I ended up soldering a 4k7 resistor over the WP solder jumper, thereby inverting the signal to a pull-up, which I then could selectively overwrite from my microcontroller if needed.)
-
The 100k pull-ups on the address lines are outright wrong. Consulting the datasheet there can be seen that there could be up to 50µA flowing into A0, A1, A2. This leads to a significant voltage drop over the 100k resistor. When I tried to change the address by cutting the jumper to GND and brigding the jumper to the 100k resistor, I ended up with only 1.3V at the address pin, which is in an undefined voltage span of the digital input. In my case it was still interpreted as LOW an therefore the address did not change:
I estimated the internal pull-down resistor of the EEPROM (which is also mentioned in the datasheet but without exact value) to be 66kOhms. I think you should redesign the resistors R2, R6 and R7 to be not larger than 10k (they could even be omitted entirely). In my case I just soldered a piece of wire across the three footpints which works wonderfully:
So i have now either a hard pull to GND or a hard pull to 3V3, depending on the solder jumpers E0, E1 and E2.
Hope this helps anyone else struggeling with setting the address of the EEPROM.

