|
15 | 15 | //for Raspberry Pi Pico W, if you set USE_FILE_FS, in Arduino IDE, Click Tools > Flash Size > select FS: 64KB
|
16 | 16 | #define USE_EEPROM
|
17 | 17 |
|
18 |
| -//adds device name to settings (for plugs) (to disable comment it) |
| 18 | +//adds device name to settings (to disable, comment it) |
19 | 19 | #define add_device_name
|
20 | 20 |
|
21 |
| -//adds delete credentials button to settings (to disable comment it) |
| 21 | +//adds delete credentials button to settings (to disable, comment it) |
22 | 22 | #define add_delete_credentials_button
|
23 | 23 |
|
24 |
| -//Default Wifi Host Name (to disable set to NULL) |
| 24 | +//Default Wifi Host Name (to disable, set to NULL) |
25 | 25 | #define default_wifi_host_name "NewIotDev"
|
26 | 26 |
|
27 |
| -//Default Wifi Credentials (to disable set to NULL) |
| 27 | +//Default Wifi Credentials (to disable, set to NULL) |
28 | 28 | #define default_wifi_ssid NULL
|
29 | 29 | #define default_wifi_pass NULL
|
30 | 30 |
|
31 |
| -//Default Device Name (to disable set to NULL) |
| 31 | +//Default Device Name (to disable, set to NULL) |
32 | 32 | #ifdef add_device_name
|
33 | 33 | #define default_device_name "SmartDevice"
|
34 | 34 | #endif
|
|
38 | 38 | #define config_ap_ssid "SmartDeviceConfig"
|
39 | 39 | #define config_ap_pass "adminadmin"
|
40 | 40 |
|
41 |
| -//Firmware update HTTP Auth Credentials (to disable http auth set both to nullptr) |
| 41 | +//Firmware update HTTP Auth Credentials (to disable, http auth set both to nullptr) |
42 | 42 | #define config_firm_update_http_user "admin"
|
43 | 43 | #define config_firm_update_http_pass "your_long_pass"
|
44 | 44 |
|
45 |
| -//Config mode exit timeout, set 0 to disable it. |
| 45 | +//Config mode exit timeout. (to disable, set to 0) |
46 | 46 | #define config_mode_timeout (5UL * 60000UL) //5min
|
47 | 47 |
|
48 | 48 | #endif // CONFIG_MANAGER_SETTINGS_H_
|
0 commit comments