mirror of
https://github.com/John-Varghese-EH/ESP32-CAM-ONVIF.git
synced 2025-11-11 16:26:22 +00:00
11 lines
217 B
C
11 lines
217 B
C
#pragma once
|
|
|
|
// WiFi configuration
|
|
extern const char* WIFI_SSID;
|
|
extern const char* WIFI_PASSWORD;
|
|
|
|
// WiFi connection and utility functions
|
|
bool wifi_connect();
|
|
void printBanner();
|
|
void fatalError(const char* msg);
|