Home › Evil Mad Scientist Forums › Clock Kits › Alpha Clock Five, Error Compiling sample sketches › Re: Alpha Clock Five, Error Compiling sample sketches
February 5, 2013 at 5:17 pm
#21172
Windell Oskay
Keymaster
Okay, a suggestion. Open up the library file ( …/Documents/Arduino/libraries/alphafive/alphafive.cpp ) and on line 753, make the following change:
From:
Wire.write(0); // start at register 0
To:
Wire.write((uint8_t) 0); // start at register 0
Please let me know if that fixes it.