23 lines
498 B
C++
23 lines
498 B
C++
#ifndef APP_CONFIG_HPP
|
|
#define APP_CONFIG_HPP
|
|
|
|
#include <esp_system.h>
|
|
|
|
// WiFi Configuration
|
|
#define DEFAULT_SSID "LittlePeppers"
|
|
#define DEFAULT_PASSWORD "SoliDeoGloria"
|
|
|
|
// Display Configuration (Waveshare ESP32-S3-Touch-LCD 4.3")
|
|
#define DISPLAY_WIDTH 800
|
|
#define DISPLAY_HEIGHT 480
|
|
#define DISPLAY_COLOR_DEPTH 16
|
|
|
|
// Web Server Configuration
|
|
#define WEB_SERVER_PORT 80
|
|
#define WEB_SERVER_STACK_SIZE 4096
|
|
|
|
// Initialize all application components
|
|
void app_init(void);
|
|
|
|
#endif // APP_CONFIG_HPP
|