mirror of
https://github.com/rzeldent/esp32cam-rtsp.git
synced 2025-11-14 04:04:02 +00:00
18 lines
455 B
C
18 lines
455 B
C
#pragma once
|
|
|
|
#define APP_TITLE "ESP32CAM-RTSP"
|
|
#define APP_VERSION "1.0"
|
|
|
|
#define WIFI_SSID "ESP32CAM-RTSP"
|
|
#define WIFI_PASSWORD nullptr
|
|
#define CONFIG_VERSION "1.2"
|
|
|
|
#define OTA_PASSWORD "ESP32CAM-RTSP"
|
|
|
|
#define RTSP_PORT 554
|
|
#define DEFAULT_CAMERA_CONFIG "AI THINKER"
|
|
#define DEFAULT_FRAME_DURATION "20"
|
|
#define DEFAULT_FRAME_BUFFERS "2"
|
|
#define DEFAULT_FRAME_SIZE "SVGA (800x600)"
|
|
#define DEFAULT_JPEG_QUALITY "12"
|
|
#define DEFAULT_LIGHT_INTENSITY "5" |