You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
106 lines
3.1 KiB
106 lines
3.1 KiB
/**
|
|
* Predefined AutoConnect configuration parameters.
|
|
* @file AutoConnectDefs.h
|
|
* @author hieromon@gmail.com
|
|
* @version 0.9.7
|
|
* @date 2018-11-17
|
|
* @copyright MIT license.
|
|
*/
|
|
|
|
#ifndef _AUTOCONNECTDEFS_H_
|
|
#define _AUTOCONNECTDEFS_H_
|
|
|
|
// Uncomment the following AC_DEBUG to enable debug output.
|
|
#define AC_DEBUG
|
|
|
|
// Debug output destination can be defined externally with AC_DEBUG_PORT
|
|
#ifndef AC_DEBUG_PORT
|
|
#define AC_DEBUG_PORT Serial
|
|
#endif // !AC_DEBUG_PORT
|
|
#ifdef AC_DEBUG
|
|
#define AC_DBG(...) do {AC_DEBUG_PORT.print("[AC] "); AC_DEBUG_PORT.printf( __VA_ARGS__ );} while (0)
|
|
#else
|
|
#define AC_DBG(...)
|
|
#endif // !AC_DEBUG
|
|
|
|
// Indicator to specify that AutoConnectAux handles elements with JSON.
|
|
#define AUTOCONNECT_USE_JSON
|
|
|
|
// Predefined parameters
|
|
// SSID that Captive portal started.
|
|
#ifndef AUTOCONNECT_APID
|
|
#if defined(ARDUINO_ARCH_ESP8266)
|
|
#define AUTOCONNECT_APID "esp8266ap"
|
|
#elif defined(ARDUINO_ARCH_ESP32)
|
|
#define AUTOCONNECT_APID "esp32ap"
|
|
#endif // !ARDUINO_ARCH_ESP8266
|
|
#endif // !AUTOCONNECT_APID
|
|
|
|
// Password that Captive portal started.
|
|
#ifndef AUTOCONNECT_PSK
|
|
#define AUTOCONNECT_PSK "12345678"
|
|
#endif // !AUTOCONNECT_PSK
|
|
|
|
#ifndef AUTOCONNECT_AP_IP
|
|
#define AUTOCONNECT_AP_IP 0x01F4A8C0 //*< 192.168.244.1 */
|
|
#endif // !AUTOCONNECT_AP_IP
|
|
#ifndef AUTOCONNECT_AP_GW
|
|
#define AUTOCONNECT_AP_GW 0x01F4A8C0 //*< 192.168.244.1 */
|
|
#endif // !AUTOCONNECT_AP_GW
|
|
#ifndef AUTOCONNECT_AP_NM
|
|
#define AUTOCONNECT_AP_NM 0x00FFFFFF //*< 255.255.255.0 */
|
|
#endif // !AUTOCONNECT_AP_NM
|
|
#ifndef AUTOCONNECT_AP_CH
|
|
#define AUTOCONNECT_AP_CH 1
|
|
#endif // !AUTOCONNECT_AP_CH
|
|
|
|
// AutoConnect menu root path
|
|
#ifndef AUTOCONNECT_URI
|
|
#define AUTOCONNECT_URI "/_ac"
|
|
#endif // !AUTOCONNECT_URI
|
|
|
|
// Root URI of home path prepared by user sketch
|
|
#ifndef AUTOCONNECT_HOMEURI
|
|
#define AUTOCONNECT_HOMEURI "/"
|
|
#endif // !AUTOCONNECT_HOMEURI
|
|
|
|
// AutoConnect menu title
|
|
#ifndef AUTOCONNECT_MENU_TITLE
|
|
#define AUTOCONNECT_MENU_TITLE "AutoConnect"
|
|
#endif // !AUTOCONNECT_MENU_TITLE
|
|
#define AUTOCONNECT_MENU_TITLE_CONNETED "Connected"
|
|
|
|
// URIs of AutoConnect menu collection
|
|
#define AUTOCONNECT_URI_CONFIG AUTOCONNECT_URI "/config"
|
|
#define AUTOCONNECT_URI_CONNECT AUTOCONNECT_URI "/connect"
|
|
#define AUTOCONNECT_URI_RESULT AUTOCONNECT_URI "/result"
|
|
#define AUTOCONNECT_URI_OPEN AUTOCONNECT_URI "/open"
|
|
#define AUTOCONNECT_URI_DISCON AUTOCONNECT_URI "/disc"
|
|
#define AUTOCONNECT_URI_RESET AUTOCONNECT_URI "/reset"
|
|
#define AUTOCONNECT_URI_SUCCESS AUTOCONNECT_URI "/success"
|
|
#define AUTOCONNECT_URI_FAIL AUTOCONNECT_URI "/fail"
|
|
|
|
// Time-out limitation when AutoConnect::begin
|
|
#ifndef AUTOCONNECT_TIMEOUT
|
|
#define AUTOCONNECT_TIMEOUT 30000
|
|
#endif // !AUTOCONNECT_TIMEOUT
|
|
|
|
// Advance wait time
|
|
#ifndef AUTOCONNECT_STARTUPTIME
|
|
#define AUTOCONNECT_STARTUPTIME (AUTOCONNECT_TIMEOUT/1000)
|
|
#endif // !AUTOCONNECT_STARTUPTIME
|
|
|
|
// Default HTTP port
|
|
#ifndef AUTOCONNECT_HTTPPORT
|
|
#define AUTOCONNECT_HTTPPORT 80
|
|
#endif // !AUTOCONNECT_HTTPPORT
|
|
|
|
// DNS port
|
|
#ifndef AUTOCONNECT_DNSPORT
|
|
#define AUTOCONNECT_DNSPORT 53
|
|
#endif // !AUTOCONNECT_DNSPORT
|
|
|
|
// Explicitly avoiding unused warning with token handler of PageBuilder
|
|
#define AC_UNUSED(expr) do { (void)(expr); } while (0)
|
|
|
|
#endif // _AUTOCONNECTDEFS_H_
|