The function returns information about whether the camera module is present or not.
Input:
None.
Returns: BOOL
TRUE:
If the camera module is present.
FALSE:
If the camera module is not present.
Declaration:
FUNCTIONcamPresent :BOOL;
Example:
INCLUDE rtcu.inc PROGRAM test; // Open the camera library camOpen(); BEGIN ... // Test for camera module IFcamPresent()THEN ... END_IF; ... END; END_PROGRAM;