public byte ReadEEPROM(int address) { if (address >= 0 && address < DLL.EEPROM_size()) { return(DLL.EEPROM_read(address)); } else { // Reading outside the memory return(0); } }