This commit is contained in:
John Varghese
2025-06-03 19:00:03 +05:30
committed by GitHub
parent 9a53aec572
commit 8b915114ce
2 changed files with 10 additions and 3 deletions

10
ESP32CAM-ONVIF/config.h Normal file
View File

@@ -0,0 +1,10 @@
#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);

View File

@@ -1,3 +0,0 @@
#pragma once
void printBanner();
void fatalError(const char* msg);