Home > C: Programming > Function Descriptions > | History back Previous chapter Next chapter Print |
is_ReadEEPROM |
uEye Camera Manual Version 3.80
is_ReadEEPROM
USB 2.0 GigE |
USB 2.0 GigE |
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 uEye can hold 64 bytes of user data.
Input Parameters
hCam |
Camera handle |
Adr |
Starting address for data reads Value range: 0...63 |
pcString |
Pointer to the buffer for the data to read (min. size = Count) |
Count |
Number of characters to read |
Return Values
IS_SUCCESS |
Function executed successfully |
IS_NO_SUCCESS |
General error message |
Related Functions
Code Sample
char buffer[64];
is_ReadEEPROM( hCam, 0x00, buffer, 64 );