forked from external-repos/ESP32-CAM-ONVIF
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);
|