GetEeprom Method

Function GetEeprom(address As Long, length As Long) As Byte()

Summary

This method retrieves data from the non-volatile EEPROM memory of the device.

Parameters

  • address - The starting location from which data should be retrieved (0-255).

  • length - The number of bytes to retrieve. Valid values for this parameter depend on what is provided for the address parameter. For example, with an address of 0, you may specify a length of all 256 bytes, but with an address of 255, length may only be 1.

Return Value

This method returns a byte array containing the requested data.

See Also

SetEeprom Method