i'm guessing this is an Operating System issue - is your Arduino IDE still open while you're trying to edit the H file ?
and specifically one with an #include <wire.h> ?
I am wanting to disable the internal pull-up resistors on my Uno board as I'm trying to daisy chain multiple I2C sensors. Per varesano.net -, I am to comment out the following two commands in the twi.c file found in the utilities folder of the wire library:
// activate internal pullups for twi.
digitalWrite(SDA, 1);
digitalWrite(SCL, 1);
When I edited the file to comment out these two lines, the Notepad editor will not let me SAVE the file.
Would someone please provide guidance as to how I could accomplish this modification.
Thank you, it appears your suggestion worked by saving the edited file to another folder, then pasting it to the Wire's Utility folder. I'll confirm here with another post if the system works as desired with the four I2C sensors.