With this taken from my LCD's data sheet:
The high and low values are stored separately. If the trigger value is for example 420 then this should be converted to hex (0x1a4). The least significant digits 'a4' are the low value and the most significant '1' is the high value. In this example 1 would be stored in location 18 and 0xa4 would be stored in location 19.
So, I need to be able to read the integer out of EEPROM, but can only read each byte. Like this:
highVal = ui.EEread(18);
lowVal = ui.EEread(19);