Re: Alpha Clock Five, Error Compiling sample sketches

Home Evil Mad Scientist Forums Clock Kits Alpha Clock Five, Error Compiling sample sketches Re: Alpha Clock Five, Error Compiling sample sketches

#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.