Sub SetEeprom(address As Long, length As Long, buffer() As Byte)
This method stores data into the non-volatile EEPROM memory of the device. Writing to EEPROM memory is a relatively slow process, which will temporarily disrupt event monitoring on the device. See the user manual for specific timing information.
address - The starting location to which data should be stored (0-255).
length - The number of bytes to store. 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.
buffer - The data to store into EEPROM memory. This must contain at least as many bytes as you are requesting to store.