2020-04-08 04:21:59 +08:00
|
|
|
// Rename this example to 'myconfig.h' and fill in your details.
|
2019-11-16 22:24:25 +08:00
|
|
|
// This is in the '.gitignore' file, which helps to keep details secret.
|
2019-11-15 00:01:37 +08:00
|
|
|
|
2020-08-24 03:49:10 +08:00
|
|
|
// Wifi Credentials
|
2019-11-15 00:01:37 +08:00
|
|
|
const char* ssid = "my-access-point-ssid";
|
|
|
|
const char* password = "my-access-point-password";
|
2019-11-18 09:43:07 +08:00
|
|
|
|
2020-08-24 03:49:10 +08:00
|
|
|
// Optional AccessPoint setup, uncomment to enable
|
|
|
|
// #define WIFI_AP_ENABLE
|
|
|
|
// Set this to fix the accesspoint channel number if desired
|
|
|
|
// #define AP_CHAN 5
|
|
|
|
|
|
|
|
// Give the camera a name for the web interface
|
2019-11-18 17:31:48 +08:00
|
|
|
// (nb: this is not the network hostname)
|
2020-08-24 03:49:10 +08:00
|
|
|
#define CAM_NAME "ESP32 camera server"
|
2020-08-22 00:36:36 +08:00
|
|
|
|
2020-08-26 18:20:19 +08:00
|
|
|
// Initial rotation (one of: -90,0,90)
|
2020-08-24 03:49:10 +08:00
|
|
|
// #define CAM_ROTATION 0
|
2019-11-18 17:31:48 +08:00
|
|
|
|
2020-08-24 03:49:10 +08:00
|
|
|
// Uncomment to disable the led/lamp feature
|
|
|
|
// #define LAMP_DISABLE
|
|
|
|
|
2020-08-26 18:20:19 +08:00
|
|
|
// Uncomment one, and only one, of the lines below to select your board model.
|
2020-08-24 03:49:10 +08:00
|
|
|
// Remember to select the appropriate board in the Boards Manager of your IDE/toolchain
|
2020-08-30 20:42:57 +08:00
|
|
|
// This is not optional
|
2020-08-24 03:49:10 +08:00
|
|
|
#define CAMERA_MODEL_AI_THINKER // default
|
|
|
|
//#define CAMERA_MODEL_WROVER_KIT
|
|
|
|
//#define CAMERA_MODEL_ESP_EYE
|
|
|
|
//#define CAMERA_MODEL_M5STACK_PSRAM
|
2020-08-30 20:42:57 +08:00
|
|
|
//#define CAMERA_MODEL_M5STACK_V2_PSRAM
|
2020-08-24 03:49:10 +08:00
|
|
|
//#define CAMERA_MODEL_M5STACK_WIDE
|
2020-08-30 20:42:57 +08:00
|
|
|
//#define CAMERA_MODEL_M5STACK_ESP32CAM // Originally: CAMERA_MODEL_M5STACK_NO_PSRAM
|
|
|
|
//#define CAMERA_MODEL_TTGO_T_JOURNAL
|