// Simple extension to the EEPROM library // Tim Hirzel // All code released under // Creative Commons Attribution-Noncommercial-Share Alike 3.0 #ifndef EEPROM_FLOAT_h #define EEPROM_FLOAT_h #include float readFloat(int address); void writeFloat(float value, int address); // END EEPROM Float #endif