You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+19-3Lines changed: 19 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,7 +46,7 @@ Use the keyboard shortcut `AltGr + ]` to leave serial monitor.
46
46
47
47
Now you have installed the pre-configured boot script.
48
48
49
-
If this is your first install, your onboard LED should blink now. Blinking signals that your board has started a soft ap with the ssid "esp32". With your mobile or desktop connect to the WLAN SSID "esp32" and openhttp://192.168.4.1/setup (if you have not changed the default credentials your username / password is esp32 / esp32 ).
49
+
If this is your first install, your onboard LED should blink now. Blinking signals that your board has started a soft ap with the ssid "esp32". With your mobile or desktop connect to the WLAN SSID "esp32" and openhttp://192.168.4.1/setup (if you have not changed the default credentials your username / password is esp32 / esp32 ). You can change the default password in`./sdkconfig` by changing the value of`CONFIG_ESP32_JS_BASIC_AUTH_PASSWORD`.
50
50
51
51
On the Setup page you can configure your WLAN settings and an URL to download your JS main script from.
52
52
@@ -80,18 +80,34 @@ See [ESP Build System](https://docs.espressif.com/projects/esp-idf/en/latest/esp
80
80
81
81
### Clean
82
82
83
-
You can clean the projectwith
83
+
You can clean the projectby executing
84
84
85
85
```shell
86
86
idf.py fullclean
87
87
```
88
88
89
+
###Factory reset
90
+
91
+
You can erase the persistent flash memory, which will be equivalent to a factory reset, by executing
92
+
93
+
```shell
94
+
idf.py erase_flash
95
+
```
96
+
89
97
##Compatibility
90
98
91
99
Tested with esp-idf (master branch commit hash 2e14149b).