|
| 1 | +# Libesphttpd WiFi-API |
| 2 | + |
| 3 | +Functions to configure ESP32 WiFi settings via HTTP API. |
| 4 | + |
| 5 | +## GUI |
| 6 | +See the example js/html code for the GUI here: https://github.com/chmorgan/esphttpd-freertos/blob/master/html/wifi/index.html |
| 7 | + |
| 8 | +## Functions defined in libesphttpd/cgiwifi.h |
| 9 | + |
| 10 | +* __cgiWiFiScan()__ |
| 11 | + |
| 12 | + Gets the results of an earler scan in JSON format. Optionally start a new scan. |
| 13 | + |
| 14 | + Examples: |
| 15 | + * `http://my-esp32-ip/wifi/scan?clear=1&start=1` - Clear the previous results and start a new scan. Returned APs list will be empty and inProgress will be true. |
| 16 | + |
| 17 | + Note: If client is connected via WiFi, then start=1 may interrupt communication breifly, so use sparingly. |
| 18 | + * `http://my-esp32-ip/wifi/scan` - After sending start command, poll this until `inProgress:false` and APs list contains results. |
| 19 | + |
| 20 | + Note: "enc" value is from `enum wifi_auth_mode_t`, where 0=Open, 1=WEP, 2+ is WPA. |
| 21 | + |
| 22 | + GET/POST args: |
| 23 | + ```js |
| 24 | + "clear": number // 1: Clear the previous results first. |
| 25 | + "start": number // 1: Start a new scan now. |
| 26 | + ``` |
| 27 | + Response: |
| 28 | + ```js |
| 29 | + { |
| 30 | + "args": { // Args are repeated here in the response |
| 31 | + "clear": number, |
| 32 | + "start": number, |
| 33 | + }, |
| 34 | + "APs": [{ |
| 35 | + "essid": string, // Name of AP discovered |
| 36 | + "bssid": string, // MAC of AP discoverd |
| 37 | + "rssi": number, // Signal strength i.e. -55 |
| 38 | + "enc": number, // WiFi security (encryption) type. |
| 39 | + "channel": number // Channel used by AP |
| 40 | + },{...}], |
| 41 | + "working": boolean, // A scan is in progress. Poll this. |
| 42 | + "success": boolean, // CGI success/fail |
| 43 | + "error": string, // Optional error message if failure |
| 44 | + } |
| 45 | + ``` |
| 46 | + |
| 47 | +* __cgiWiFiConnect()__ |
| 48 | + |
| 49 | + Set WiFi STAtion (ESP WiFI Client) settings and trigger a connection. |
| 50 | + |
| 51 | + Note: The "success" response of this CGI call does not indicate if the WiFi connection succeeds. Poll /wifi/sta (cgiWiFiConnStatus) for connection pending/success/fail. |
| 52 | + |
| 53 | + Examples: |
| 54 | + * http://my-esp32-ip/wifi/connect?ssid=my-ssid&pass=mysecretpasswd - Trigger a connection attempt to the AP with the given SSID and password. |
| 55 | + |
| 56 | + GET/POST args: |
| 57 | + ```js |
| 58 | + "ssid": string |
| 59 | + "pass": string |
| 60 | + ``` |
| 61 | + Response: |
| 62 | + ```js |
| 63 | + { |
| 64 | + "args": { // Args are repeated here in the response |
| 65 | + "ssid": string, |
| 66 | + "pass": string, |
| 67 | + }, |
| 68 | + "success": boolean, // CGI success/fail |
| 69 | + "error": string, // Optional error message if failure |
| 70 | + } |
| 71 | + ``` |
| 72 | + |
| 73 | +* __cgiWiFiSetMode()__ |
| 74 | + |
| 75 | + CGI used to get/set the WiFi mode. |
| 76 | + |
| 77 | + The mode values are defined by `enum wifi_mode_t` |
| 78 | + ```c |
| 79 | + 0 /**< null mode */ |
| 80 | + 1 /**< WiFi station mode */ |
| 81 | + 2 /**< WiFi soft-AP mode */ |
| 82 | + 3 /**< WiFi station + soft-AP mode */ |
| 83 | + ``` |
| 84 | + |
| 85 | + Examples |
| 86 | + * i.e. http://ip/wifi/mode?mode=1 - Change mode to WIFI_MODE_STA |
| 87 | + |
| 88 | + GET/POST args: |
| 89 | + ```js |
| 90 | + "mode": number // The desired Mode (as number specified in enum wifi_mode_t) |
| 91 | + "force": number // 1: Force the change, regardless of whether ESP's STA is connected to an AP. |
| 92 | + ``` |
| 93 | + Response: |
| 94 | + ```js |
| 95 | + { |
| 96 | + "args": { // Args are repeated here in the response |
| 97 | + "mode": number, |
| 98 | + "force": number, |
| 99 | + }, |
| 100 | + "mode": number, // The current Mode (as number specified in enum wifi_mode_t) |
| 101 | + "mode_str": string, // The current Mode (as a string specified in wifi_mode_names[]= "Disabled","STA","AP""AP+STA") |
| 102 | + "success": boolean, // CGI success/fail |
| 103 | + "error": string, // Optional error message if failure |
| 104 | + } |
| 105 | + ``` |
| 106 | + |
| 107 | +* __cgiWiFiStartWps()__ |
| 108 | + |
| 109 | + CGI for triggering a WPS push button connection attempt. |
| 110 | + |
| 111 | +* __cgiWiFiAPSettings()__ |
| 112 | + |
| 113 | + CGI for get/set settings in AP mode. |
| 114 | + |
| 115 | + Examples: |
| 116 | + * http://ip/wifi/ap?ssid=myssid&pass=mypass&chan=1 - Change AP settings |
| 117 | + |
| 118 | + GET/POST args: |
| 119 | + ```js |
| 120 | + "chan": number, |
| 121 | + "ssid": string, |
| 122 | + "pass": string |
| 123 | + ``` |
| 124 | + Response: |
| 125 | + ```js |
| 126 | + { |
| 127 | + "args": { // Args are repeated here in the response |
| 128 | + "chan": number, |
| 129 | + "ssid": string, |
| 130 | + "pass": string, |
| 131 | + }, |
| 132 | + "enabled" : boolean, // AP is enabled |
| 133 | + "success": boolean, // CGI success/fail |
| 134 | + "error": string, // Optional error message if failure |
| 135 | + } |
| 136 | + ``` |
| 137 | + |
| 138 | +* __cgiWiFiConnStatus()__ |
| 139 | + |
| 140 | + CGI returning the current state of the WiFi STA connection to an AP. |
| 141 | + |
| 142 | + Examples: |
| 143 | + * `http://my-esp32-ip/wifi/sta` - Get the state of the STAtion |
| 144 | + |
| 145 | + Response: |
| 146 | + ```js |
| 147 | + { |
| 148 | + "ssid": string, // SSID that the STAtion should connect to. |
| 149 | + "pass": string, // WiFi network password. |
| 150 | + "enabled" : boolean, // STA is enabled |
| 151 | + "ip" : string, // Optional IP address of STAtion (only if connected) |
| 152 | + "working": boolean, // A connect is in progress. Poll this. |
| 153 | + "connected": boolean, // STAtion is connected to a WiFi network. Poll this. |
| 154 | + "success": boolean, // CGI success/fail |
| 155 | + "error": string, // Optional error message if failure |
| 156 | + } |
| 157 | + ``` |
0 commit comments