Fork of the espurna firmware for `mhsw` switches
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

444 lines
12 KiB

8 years ago
7 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
6 years ago
  1. /*
  2. WIFI MODULE
  3. Copyright (C) 2016-2018 by Xose Pérez <xose dot perez at gmail dot com>
  4. */
  5. #include "JustWifi.h"
  6. #include <Ticker.h>
  7. uint32_t _wifi_scan_client_id = 0;
  8. // -----------------------------------------------------------------------------
  9. // PRIVATE
  10. // -----------------------------------------------------------------------------
  11. void _wifiConfigure() {
  12. jw.setHostname(getSetting("hostname").c_str());
  13. #if USE_PASSWORD
  14. jw.setSoftAP(getSetting("hostname").c_str(), getSetting("adminPass", ADMIN_PASS).c_str());
  15. #else
  16. jw.setSoftAP(getSetting("hostname").c_str());
  17. #endif
  18. jw.setConnectTimeout(WIFI_CONNECT_TIMEOUT);
  19. wifiReconnectCheck();
  20. jw.setAPMode(WIFI_AP_MODE);
  21. jw.cleanNetworks();
  22. // If system is flagged unstable we do not init wifi networks
  23. #if SYSTEM_CHECK_ENABLED
  24. if (!systemCheck()) return;
  25. #endif
  26. // Clean settings
  27. _wifiClean(WIFI_MAX_NETWORKS);
  28. int i;
  29. for (i = 0; i< WIFI_MAX_NETWORKS; i++) {
  30. if (getSetting("ssid" + String(i)).length() == 0) break;
  31. if (getSetting("ip" + String(i)).length() == 0) {
  32. jw.addNetwork(
  33. getSetting("ssid" + String(i)).c_str(),
  34. getSetting("pass" + String(i)).c_str()
  35. );
  36. } else {
  37. jw.addNetwork(
  38. getSetting("ssid" + String(i)).c_str(),
  39. getSetting("pass" + String(i)).c_str(),
  40. getSetting("ip" + String(i)).c_str(),
  41. getSetting("gw" + String(i)).c_str(),
  42. getSetting("mask" + String(i)).c_str(),
  43. getSetting("dns" + String(i)).c_str()
  44. );
  45. }
  46. }
  47. jw.scanNetworks(getSetting("wifiScan", WIFI_SCAN_NETWORKS).toInt() == 1);
  48. }
  49. void _wifiScan(uint32_t client_id = 0) {
  50. DEBUG_MSG_P(PSTR("[WIFI] Start scanning\n"));
  51. #if WEB_SUPPORT
  52. String output;
  53. #endif
  54. unsigned char result = WiFi.scanNetworks();
  55. if (result == WIFI_SCAN_FAILED) {
  56. DEBUG_MSG_P(PSTR("[WIFI] Scan failed\n"));
  57. #if WEB_SUPPORT
  58. output = String("Failed scan");
  59. #endif
  60. } else if (result == 0) {
  61. DEBUG_MSG_P(PSTR("[WIFI] No networks found\n"));
  62. #if WEB_SUPPORT
  63. output = String("No networks found");
  64. #endif
  65. } else {
  66. DEBUG_MSG_P(PSTR("[WIFI] %d networks found:\n"), result);
  67. // Populate defined networks with scan data
  68. for (int8_t i = 0; i < result; ++i) {
  69. String ssid_scan;
  70. int32_t rssi_scan;
  71. uint8_t sec_scan;
  72. uint8_t* BSSID_scan;
  73. int32_t chan_scan;
  74. bool hidden_scan;
  75. char buffer[128];
  76. WiFi.getNetworkInfo(i, ssid_scan, sec_scan, rssi_scan, BSSID_scan, chan_scan, hidden_scan);
  77. snprintf_P(buffer, sizeof(buffer),
  78. PSTR("BSSID: %02X:%02X:%02X:%02X:%02X:%02X SEC: %s RSSI: %3d CH: %2d SSID: %s"),
  79. BSSID_scan[1], BSSID_scan[2], BSSID_scan[3], BSSID_scan[4], BSSID_scan[5], BSSID_scan[6],
  80. (sec_scan != ENC_TYPE_NONE ? "YES" : "NO "),
  81. rssi_scan,
  82. chan_scan,
  83. (char *) ssid_scan.c_str()
  84. );
  85. DEBUG_MSG_P(PSTR("[WIFI] > %s\n"), buffer);
  86. #if WEB_SUPPORT
  87. if (client_id > 0) output = output + String(buffer) + String("<br />");
  88. #endif
  89. }
  90. }
  91. #if WEB_SUPPORT
  92. if (client_id > 0) {
  93. output = String("{\"scanResult\": \"") + output + String("\"}");
  94. wsSend(client_id, output.c_str());
  95. }
  96. #endif
  97. WiFi.scanDelete();
  98. }
  99. bool _wifiClean(unsigned char num) {
  100. bool changed = false;
  101. int i = 0;
  102. // Clean defined settings
  103. while (i < num) {
  104. // Skip on first non-defined setting
  105. if (!hasSetting("ssid", i)) {
  106. delSetting("ssid", i);
  107. break;
  108. }
  109. // Delete empty values
  110. if (!hasSetting("pass", i)) delSetting("pass", i);
  111. if (!hasSetting("ip", i)) delSetting("ip", i);
  112. if (!hasSetting("gw", i)) delSetting("gw", i);
  113. if (!hasSetting("mask", i)) delSetting("mask", i);
  114. if (!hasSetting("dns", i)) delSetting("dns", i);
  115. ++i;
  116. }
  117. // Delete all other settings
  118. while (i < WIFI_MAX_NETWORKS) {
  119. changed = hasSetting("ssid", i);
  120. delSetting("ssid", i);
  121. delSetting("pass", i);
  122. delSetting("ip", i);
  123. delSetting("gw", i);
  124. delSetting("mask", i);
  125. delSetting("dns", i);
  126. ++i;
  127. }
  128. return changed;
  129. }
  130. // Inject hardcoded networks
  131. void _wifiInject() {
  132. if (strlen(WIFI1_SSID)) {
  133. if (!hasSetting("ssid", 0)) {
  134. setSetting("ssid", 0, WIFI1_SSID);
  135. setSetting("pass", 0, WIFI1_PASS);
  136. setSetting("ip", 0, WIFI1_IP);
  137. setSetting("gw", 0, WIFI1_GW);
  138. setSetting("mask", 0, WIFI1_MASK);
  139. setSetting("dns", 0, WIFI1_DNS);
  140. }
  141. if (strlen(WIFI2_SSID)) {
  142. if (!hasSetting("ssid", 1)) {
  143. setSetting("ssid", 1, WIFI2_SSID);
  144. setSetting("pass", 1, WIFI2_PASS);
  145. setSetting("ip", 1, WIFI2_IP);
  146. setSetting("gw", 1, WIFI2_GW);
  147. setSetting("mask", 1, WIFI2_MASK);
  148. setSetting("dns", 1, WIFI2_DNS);
  149. }
  150. }
  151. }
  152. }
  153. #if DEBUG_SUPPORT
  154. void _wifiDebug(justwifi_messages_t code, char * parameter) {
  155. if (code == MESSAGE_SCANNING) {
  156. DEBUG_MSG_P(PSTR("[WIFI] Scanning\n"));
  157. }
  158. if (code == MESSAGE_SCAN_FAILED) {
  159. DEBUG_MSG_P(PSTR("[WIFI] Scan failed\n"));
  160. }
  161. if (code == MESSAGE_NO_NETWORKS) {
  162. DEBUG_MSG_P(PSTR("[WIFI] No networks found\n"));
  163. }
  164. if (code == MESSAGE_NO_KNOWN_NETWORKS) {
  165. DEBUG_MSG_P(PSTR("[WIFI] No known networks found\n"));
  166. }
  167. if (code == MESSAGE_FOUND_NETWORK) {
  168. DEBUG_MSG_P(PSTR("[WIFI] %s\n"), parameter);
  169. }
  170. if (code == MESSAGE_CONNECTING) {
  171. DEBUG_MSG_P(PSTR("[WIFI] Connecting to %s\n"), parameter);
  172. }
  173. if (code == MESSAGE_CONNECT_WAITING) {
  174. // too much noise
  175. }
  176. if (code == MESSAGE_CONNECT_FAILED) {
  177. DEBUG_MSG_P(PSTR("[WIFI] Could not connect to %s\n"), parameter);
  178. }
  179. if (code == MESSAGE_CONNECTED) {
  180. wifiStatus();
  181. }
  182. if (code == MESSAGE_ACCESSPOINT_CREATED) {
  183. wifiStatus();
  184. }
  185. if (code == MESSAGE_DISCONNECTED) {
  186. DEBUG_MSG_P(PSTR("[WIFI] Disconnected\n"));
  187. }
  188. if (code == MESSAGE_ACCESSPOINT_CREATING) {
  189. DEBUG_MSG_P(PSTR("[WIFI] Creating access point\n"));
  190. }
  191. if (code == MESSAGE_ACCESSPOINT_FAILED) {
  192. DEBUG_MSG_P(PSTR("[WIFI] Could not create access point\n"));
  193. }
  194. }
  195. #endif // DEBUG_SUPPORT
  196. // -----------------------------------------------------------------------------
  197. // SETTINGS
  198. // -----------------------------------------------------------------------------
  199. #if TERMINAL_SUPPORT
  200. void _wifiInitCommands() {
  201. settingsRegisterCommand(F("WIFI.RESET"), [](Embedis* e) {
  202. _wifiConfigure();
  203. wifiDisconnect();
  204. DEBUG_MSG_P(PSTR("+OK\n"));
  205. });
  206. settingsRegisterCommand(F("WIFI.AP"), [](Embedis* e) {
  207. createAP();
  208. DEBUG_MSG_P(PSTR("+OK\n"));
  209. });
  210. settingsRegisterCommand(F("WIFI.SCAN"), [](Embedis* e) {
  211. _wifiScan();
  212. DEBUG_MSG_P(PSTR("+OK\n"));
  213. });
  214. }
  215. #endif
  216. // -----------------------------------------------------------------------------
  217. // WEB
  218. // -----------------------------------------------------------------------------
  219. #if WEB_SUPPORT
  220. void _wifiWebSocketOnSend(JsonObject& root) {
  221. root["maxNetworks"] = WIFI_MAX_NETWORKS;
  222. root["wifiScan"] = getSetting("wifiScan", WIFI_SCAN_NETWORKS).toInt() == 1;
  223. JsonArray& wifi = root.createNestedArray("wifi");
  224. for (byte i=0; i<WIFI_MAX_NETWORKS; i++) {
  225. if (!hasSetting("ssid", i)) break;
  226. JsonObject& network = wifi.createNestedObject();
  227. network["ssid"] = getSetting("ssid", i, "");
  228. network["pass"] = getSetting("pass", i, "");
  229. network["ip"] = getSetting("ip", i, "");
  230. network["gw"] = getSetting("gw", i, "");
  231. network["mask"] = getSetting("mask", i, "");
  232. network["dns"] = getSetting("dns", i, "");
  233. }
  234. }
  235. void _wifiWebSocketOnAction(uint32_t client_id, const char * action, JsonObject& data) {
  236. if (strcmp(action, "scan") == 0) _wifi_scan_client_id = client_id;
  237. }
  238. #endif
  239. // -----------------------------------------------------------------------------
  240. // API
  241. // -----------------------------------------------------------------------------
  242. String getIP() {
  243. if (WiFi.getMode() == WIFI_AP) {
  244. return WiFi.softAPIP().toString();
  245. }
  246. return WiFi.localIP().toString();
  247. }
  248. String getNetwork() {
  249. if (WiFi.getMode() == WIFI_AP) {
  250. return jw.getAPSSID();
  251. }
  252. return WiFi.SSID();
  253. }
  254. bool wifiConnected() {
  255. return jw.connected();
  256. }
  257. void wifiDisconnect() {
  258. jw.disconnect();
  259. }
  260. bool createAP() {
  261. jw.disconnect();
  262. jw.resetReconnectTimeout();
  263. return jw.createAP();
  264. }
  265. void wifiReconnectCheck() {
  266. bool connected = false;
  267. #if WEB_SUPPORT
  268. if (wsConnected()) connected = true;
  269. #endif
  270. #if TELNET_SUPPORT
  271. if (telnetConnected()) connected = true;
  272. #endif
  273. jw.setReconnectTimeout(connected ? 0 : WIFI_RECONNECT_INTERVAL);
  274. }
  275. void wifiStatus() {
  276. if (WiFi.getMode() == WIFI_AP_STA) {
  277. DEBUG_MSG_P(PSTR("[WIFI] MODE AP + STA --------------------------------\n"));
  278. } else if (WiFi.getMode() == WIFI_AP) {
  279. DEBUG_MSG_P(PSTR("[WIFI] MODE AP --------------------------------------\n"));
  280. } else if (WiFi.getMode() == WIFI_STA) {
  281. DEBUG_MSG_P(PSTR("[WIFI] MODE STA -------------------------------------\n"));
  282. } else {
  283. DEBUG_MSG_P(PSTR("[WIFI] MODE OFF -------------------------------------\n"));
  284. DEBUG_MSG_P(PSTR("[WIFI] No connection\n"));
  285. }
  286. if ((WiFi.getMode() & WIFI_AP) == WIFI_AP) {
  287. DEBUG_MSG_P(PSTR("[WIFI] SSID %s\n"), jw.getAPSSID().c_str());
  288. DEBUG_MSG_P(PSTR("[WIFI] PASS %s\n"), getSetting("adminPass", ADMIN_PASS).c_str());
  289. DEBUG_MSG_P(PSTR("[WIFI] IP %s\n"), WiFi.softAPIP().toString().c_str());
  290. DEBUG_MSG_P(PSTR("[WIFI] MAC %s\n"), WiFi.softAPmacAddress().c_str());
  291. }
  292. if ((WiFi.getMode() & WIFI_STA) == WIFI_STA) {
  293. uint8_t * bssid = WiFi.BSSID();
  294. DEBUG_MSG_P(PSTR("[WIFI] SSID %s\n"), WiFi.SSID().c_str());
  295. DEBUG_MSG_P(PSTR("[WIFI] IP %s\n"), WiFi.localIP().toString().c_str());
  296. DEBUG_MSG_P(PSTR("[WIFI] MAC %s\n"), WiFi.macAddress().c_str());
  297. DEBUG_MSG_P(PSTR("[WIFI] GW %s\n"), WiFi.gatewayIP().toString().c_str());
  298. DEBUG_MSG_P(PSTR("[WIFI] DNS %s\n"), WiFi.dnsIP().toString().c_str());
  299. DEBUG_MSG_P(PSTR("[WIFI] MASK %s\n"), WiFi.subnetMask().toString().c_str());
  300. DEBUG_MSG_P(PSTR("[WIFI] HOST %s\n"), WiFi.hostname().c_str());
  301. DEBUG_MSG_P(PSTR("[WIFI] BSSID %02X:%02X:%02X:%02X:%02X:%02X\n"),
  302. bssid[0], bssid[1], bssid[2], bssid[3], bssid[4], bssid[5], bssid[6]
  303. );
  304. DEBUG_MSG_P(PSTR("[WIFI] CH %d\n"), WiFi.channel());
  305. DEBUG_MSG_P(PSTR("[WIFI] RSSI %d\n"), WiFi.RSSI());
  306. }
  307. DEBUG_MSG_P(PSTR("[WIFI] ----------------------------------------------\n"));
  308. }
  309. void wifiRegister(wifi_callback_f callback) {
  310. jw.subscribe(callback);
  311. }
  312. // -----------------------------------------------------------------------------
  313. // INITIALIZATION
  314. // -----------------------------------------------------------------------------
  315. void wifiSetup() {
  316. #if WIFI_SLEEP_ENABLED
  317. wifi_set_sleep_type(LIGHT_SLEEP_T);
  318. #endif
  319. _wifiInject();
  320. _wifiConfigure();
  321. // Message callbacks
  322. #if DEBUG_SUPPORT
  323. wifiRegister(_wifiDebug);
  324. #endif
  325. #if WEB_SUPPORT
  326. wsOnSendRegister(_wifiWebSocketOnSend);
  327. wsOnAfterParseRegister(_wifiConfigure);
  328. wsOnActionRegister(_wifiWebSocketOnAction);
  329. #endif
  330. #if TERMINAL_SUPPORT
  331. _wifiInitCommands();
  332. #endif
  333. // Register loop
  334. espurnaRegisterLoop(wifiLoop);
  335. }
  336. void wifiLoop() {
  337. jw.loop();
  338. if (_wifi_scan_client_id > 0) {
  339. _wifiScan(_wifi_scan_client_id);
  340. _wifi_scan_client_id = 0;
  341. }
  342. }