Esempio n. 1
0
/**
 * Update a single byte
 * The EEPROM will only be overwritten if different. This will reduce wear.
 * This function performs as updateByte and is added to be similar to the EEPROM library
 */
bool Eeprom::update(int address, uint8_t value)
{
    return (updateByte(address, value));
}
Esempio n. 2
0
bool EEPROMClassEx::update(int address, uint8_t value)
{
	return (updateByte(address, value));
}