5MP Motion Camera  1.1.1.1
A waterproof, low power, battery operated, motion activated, 5 mega-pixel, WiFi camera.
memorysaver.h
Go to the documentation of this file.
1 #ifndef _MEMORYSAVER_
2 #define _MEMORYSAVER_
3 
4 //Only when using raspberry,enable it
5 //#define RASPBERRY_PI
6 
7 //There are two steps you need to modify in this file before normal compilation
8 //Only ArduCAM Shield series platform need to select camera module, ArduCAM-Mini series platform doesn't
9 
10 //Step 1: select the hardware platform, only one at a time
11 //#define OV2640_MINI_2MP
12 //#define OV3640_MINI_3MP
13 //#define OV5642_MINI_5MP
14 //#define OV5642_MINI_5MP_BIT_ROTATION_FIXED
15 //#define OV2640_MINI_2MP_PLUS
16 #define OV5642_MINI_5MP_PLUS
17 //#define OV5640_MINI_5MP_PLUS
18 
19 
20 //#define ARDUCAM_SHIELD_REVC
21 //#define ARDUCAM_SHIELD_V2
22 
23 
24 //Step 2: Select one of the camera module, only one at a time
25 #if (defined(ARDUCAM_SHIELD_REVC) || defined(ARDUCAM_SHIELD_V2))
26  //#define OV7660_CAM
27  //#define OV7725_CAM
28  //#define OV7670_CAM
29  //#define OV7675_CAM
30  //#define OV2640_CAM
31  //#define OV3640_CAM
32  #define OV5642_CAM
33  //#define OV5640_CAM
34 
35  //#define MT9D111A_CAM
36  //#define MT9D111B_CAM
37  //#define MT9M112_CAM
38  //#define MT9V111_CAM
39  //#define MT9M001_CAM
40  //#define MT9V034_CAM
41  //#define MT9M034_CAM
42  //#define MT9T112_CAM
43  //#define MT9D112_CAM
44 #endif
45 
46 #endif //_MEMORYSAVER_