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
{{ message }}
This repository was archived by the owner on Nov 25, 2021. It is now read-only.
Add new features to enable :
1. configuring Portal Static IP address, Name and Password.
2. configuring Static IP address, Gateway, Subnet Mask and 2 DNS Servers IP addresses.
Copy file name to clipboardExpand all lines: README.md
+67-1Lines changed: 67 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,11 @@ I'm inspired by [`EasyBlynk8266`] (https://github.com/Barbayar/EasyBlynk8266)
6
6
7
7
To help you to eliminate `hardcoding` your Wifi and Blynk credentials for ESP8266 and ESP32 (with / wwithout SSL), and updating/reflashing every time when you need to change them.
8
8
9
+
With version v1.0.5 or later, you now can configure:
10
+
11
+
1. Config Portal Static IP address, Name and Password.
12
+
2. Static IP address, Gateway, Subnet Mask and 2 DNS Servers IP addresses.
13
+
9
14
### Installation
10
15
11
16
The suggested way to install is to:
@@ -87,6 +92,37 @@ After you connected, please, go to http://192.168.4.1.
87
92
88
93
Enter your credentials, then click `Save`. After you restarted, you will see your built-in LED turned OFF. That means, it connected to your Blynk server successfully.
89
94
95
+
The following is the sample terminal output when running example [ESP32WM_Config](examples/ESP32WM_Config)
96
+
97
+
```
98
+
Starting ...
99
+
[34] RFC925 Hostname = ESP32-WM-Config
100
+
[46] Header = SSL_ESP32, SSID = ***, PW = ***
101
+
[46] Server = account.duckdns.org, Port = 9443, Token = ***
102
+
[47] Board Name = ESP32-WM-SSL-Config
103
+
[50]
104
+
___ __ __
105
+
/ _ )/ /_ _____ / /__
106
+
/ _ / / // / _ \/ '_/
107
+
/____/_/\_, /_//_/_/\_\
108
+
/___/ v0.6.1 on ESP32
109
+
110
+
[146] Use static IP
111
+
[151] connectToWifi: start
112
+
[402] connectToWifi: connected OK
113
+
[402] IP = 192.168.2.230, GW = 192.168.2.1, SN = 255.255.255.0
114
+
[402] DNS1 = 192.168.2.1, DNS2 = 8.8.8.8
115
+
[403] begin: WiFi connected. Try connecting to Blynk
116
+
[408] BlynkArduinoClient.connect: Connecting to account.duckdns.org:9443
117
+
[3684] Certificate OK
118
+
[3696] Ready (ping: 10ms).
119
+
[3763] begin: WiFi and Blynk connected
120
+
121
+
Blynk ESP32 using EEPROM connected. Board Name : ESP32-WM-SSL-Config
// Use this to default DHCP hostname to ESP8266-XXXXXX or ESP32-XXXXXX
168
219
//Blynk.begin();
169
220
// Use this to personalize DHCP hostname (RFC952 conformed)
@@ -176,6 +227,21 @@ void loop()
176
227
Blynk.run();
177
228
}
178
229
```
230
+
231
+
### Releases v1.0.5
232
+
233
+
***Why this version***
234
+
235
+
Normally, the default Portal IP (192.168.4.1), SSID and PW as well as the dynamically allocated board's IP address are good enough.
236
+
In special cases where there is conflict, if static IP is required or bad router's DNS settings, you can use the new features to force the configurable IP addresses. But please use with care to avoid potential issues.
237
+
238
+
***New in this version***
239
+
240
+
Add new features to enable :
241
+
242
+
1. configuring Portal Static IP address, Name and Password.
243
+
2. configuring Static IP address, Gateway, Subnet Mask and 2 DNS Servers IP addresses.
0 commit comments