forked from lrxgab005/artNetNode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
WiFi.ino
226 lines (183 loc) · 5.6 KB
/
WiFi.ino
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
/*
ESP8266_ArtNetNode_DMX - WiFi.ino
Copyright (c) 2015, Matthew Tong
https://github.com/mtongnz/ESP8266_ArtNetNode_DMX
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public
License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any
later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program.
If not, see http://www.gnu.org/licenses/
*/
/* startWiFi()
* Connects our WiFi.
* If it can't connect and allowHotSpot is set, it will call startHotSpot
*/
void startWifi() {
#ifdef VERBOSE
Serial.print("SSID: ");
Serial.println(wifiSSID);
Serial.print("Password: ");
Serial.println(wifiPass);
Serial.print("Wifi Connecting");
#endif
// Connect wifi
WiFi.begin(wifiSSID, wifiPass);
WiFi.mode(WIFI_STA);
WiFi.hostname(nodeName);
uint16_t x = 0;
// Wait for WiFi to connect
while (WiFi.status() != WL_CONNECTED) {
// delay to yield to esp core functions
delay(500);
#ifdef VERBOSE
Serial.print(".");
#endif
// If it hasn't connected within the preset time, start hot spot
// note the .5 second delay above -> hence hotSpotDelay*2
if (allowHotSpot == 1 && x++ == hotSpotDelay * 2) {
#ifdef VERBOSE
Serial.println(" failed!");
Serial.println("Starting Hotspot");
#endif
delay(1000);
// start our hotspot
startHotSpot();
}
}
// Get MAC Address
getMac();
// If static address, set our wifi to use it
if (dhcp != 1) {
IPAddress gw(ip[0], 0, 0, 1);
WiFi.config(ip, gw, subnet);
// If DHCP, get the IPs
} else {
ap_ip = WiFi.localIP();
ip = WiFi.localIP();
subnet = WiFi.subnetMask();
}
// Set our broadcast address
setBroadcastAddr();
#ifdef VERBOSE
Serial.println(" connected");
Serial.print("IP: ");
Serial.println(ip);
Serial.print("Broadcast Address: ");
Serial.println(broadcast_ip);
Serial.print("Subnet: ");
Serial.println(subnet);
Serial.print("MAC Address: ");
Serial.println(MAC_address);
#endif
}
/* startHotSpot()
* This starts our hot spot and webserver. It doesn't start UDP listner for ArtNet however.
* It also resets our device after set timeouts.
*/
void startHotSpot() {
#ifdef VERBOSE
Serial.print("Starting Hotspot... ");
#endif
// Let other functions know we're a hot spot now
isHotSpot = 1;
// generate the AP ssid & password
String ssid = nodeName;
String password = "artNode";
ssid += '_';
ssid += String(ESP.getChipId());
password += String(ESP.getChipId());
// Turn strings into char array for the functions below
char ssidChar[ssid.length()];
ssid.toCharArray(ssidChar, ssid.length());
char passChar[password.length()];
password.toCharArray(passChar, password.length());
// start softAP
WiFi.mode(WIFI_AP);
WiFi.softAP(ssidChar, passChar);
#ifdef VERBOSE
Serial.println("done!");
#endif
// Get IPs for DHCP
if (dhcp == 1) {
dhcp = 1;
ap_ip = {2, 0, 0, 1};
ip = ap_ip;
subnet = {255, 0, 0, 0};
// Set IP for Static
} else
ap_ip = ip;
WiFi.softAPConfig(ap_ip, ap_ip, subnet);
// Set our broadcast address
setBroadcastAddr();
// Get MAC Address
getMac();
#ifdef VERBOSE
Serial.print("SSID: ");
Serial.println(ssidChar);
Serial.print("Password: ");
Serial.println(passChar);
Serial.print("IP: ");
Serial.println(ap_ip);
Serial.print("Subnet: ");
Serial.println(subnet);
Serial.print("Broadcast Address: ");
Serial.println(broadcast_ip);
Serial.print("MAC Address: ");
Serial.println(MAC_address);
#endif
// If standAlone, return to main loop
if (standAlone == 1)
return;
// Start webServer
startWebServer();
// Set timer
unsigned long startTime = millis();
// wait 1 minute for clients to connect
while((millis() - startTime) < 60000) {
// check for any clients connected to the hotspot
if (wifi_softap_get_station_num() != 0) {
// main loop
while(1) {
// handle web requests only when in hotSpot mode
webServer.handleClient();
// reset timer when a client is connected
if (wifi_softap_get_station_num() != 0)
startTime = millis();
// if timer reaches 5 minutes, reset the node
if ((millis() - startTime) > 300000)
ESP.restart();
// yield to core esp functions
delay(10);
}
}
// yield to core esp functions
delay(100);
}
// no clients connected within 1 minute - reset device
#ifdef VERBOSE
Serial.println(" No clients connected!");
Serial.println("Reseting...");
#endif
delay(100);
ESP.restart();
}
/* getMac()
* This gets the MAC address and formats it for later.
*/
void getMac() {
char MAC_char[30] = "";
WiFi.macAddress(MAC_array);
// Format the MAC address into string
sprintf(MAC_char, "%02X", MAC_array[0]);
for (int i = 1; i < 6; ++i)
sprintf(MAC_char, "%s : %02X", MAC_char, MAC_array[i]);
MAC_address = String(MAC_char);
}
/* setBroadcastAddr()
* Calculates and sets the broadcast address using the IP and subnet
*/
void setBroadcastAddr() {
broadcast_ip = {~subnet[0] | (ip[0] & subnet[0]), ~subnet[1] | (ip[1] & subnet[1]), ~subnet[2] | (ip[2] & subnet[2]), ~subnet[3] | (ip[3] & subnet[3])};
}