esp32-cam-webserver/myconfig.sample.h

18 lines
485 B
C
Raw Normal View History

// Rename this example to 'myconfig.h' and fill in your details.
// This is in the '.gitignore' file, which helps to keep details secret.
const char* ssid = "my-access-point-ssid";
const char* password = "my-access-point-password";
const int wifichan = 5;
2019-11-18 09:43:07 +08:00
// Optionally give the camera a name for the web interface
// (nb: this is not the network hostname)
#define CAM_NAME "UltiCam"
// Optional initial rotation
#define CAM_ROTATION 90
// Optional AP setup
#define WIFI_AP