204 DCx camera
© 2010 Thorlabs
7.3.58
is_ReadEEPROM
Syntax
INT is_ReadEEPROM (HIDS hCam, INT Adr, char* pcString, INT Count)
Description
Using is_ReadEEPROM(), you can read the contents of the camera EEPROM. Besides the hard-
coded factory information, the EEPROM of the DCx camera can hold 64 bytes of user data.
Input Parameters
Starting address for data reads Value range: 0...63
Pointer to the buffer for the data to read (min. size = Count)
Number of characters to read
Return Values
Function executed successfully
Related Functions
is_WriteEEPROM()
Code Sample
char buffer[64];
is_ReadEEPROM( hCam, 0x00, buffer, 64 );
293