Skip to content

Commit 628f291

Browse files
comment and message fix
1 parent e288ad9 commit 628f291

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

configManager/configManagerSettings.h

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,20 +15,20 @@
1515
//for Raspberry Pi Pico W, if you set USE_FILE_FS, in Arduino IDE, Click Tools > Flash Size > select FS: 64KB
1616
#define USE_EEPROM
1717

18-
//adds device name to settings (for plugs) (to disable comment it)
18+
//adds device name to settings (to disable, comment it)
1919
#define add_device_name
2020

21-
//adds delete credentials button to settings (to disable comment it)
21+
//adds delete credentials button to settings (to disable, comment it)
2222
#define add_delete_credentials_button
2323

24-
//Default Wifi Host Name (to disable set to NULL)
24+
//Default Wifi Host Name (to disable, set to NULL)
2525
#define default_wifi_host_name "NewIotDev"
2626

27-
//Default Wifi Credentials (to disable set to NULL)
27+
//Default Wifi Credentials (to disable, set to NULL)
2828
#define default_wifi_ssid NULL
2929
#define default_wifi_pass NULL
3030

31-
//Default Device Name (to disable set to NULL)
31+
//Default Device Name (to disable, set to NULL)
3232
#ifdef add_device_name
3333
#define default_device_name "SmartDevice"
3434
#endif
@@ -38,11 +38,11 @@
3838
#define config_ap_ssid "SmartDeviceConfig"
3939
#define config_ap_pass "adminadmin"
4040

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)
4242
#define config_firm_update_http_user "admin"
4343
#define config_firm_update_http_pass "your_long_pass"
4444

45-
//Config mode exit timeout, set 0 to disable it.
45+
//Config mode exit timeout. (to disable, set to 0)
4646
#define config_mode_timeout (5UL * 60000UL) //5min
4747

4848
#endif // CONFIG_MANAGER_SETTINGS_H_

examples/DimmableSmartLight/DimmableSmartLight.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ void setup() {
131131
fauxmo.createServer(true); // not needed, this is the default value
132132
fauxmo.setPort(80); // This is required for gen3 devices
133133
#else
134-
#error This example only works with fauxmoESP v3.4
134+
#error This example only works with FauxmoPhilipsLight
135135
#endif
136136

137137
// You have to call enable(true) once you have a WiFi connection

0 commit comments

Comments
 (0)