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.

313 lines
8.9 KiB

8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
7 years ago
8 years ago
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
7 years ago
8 years ago
  1. /*
  2. WIFI MODULE
  3. Copyright (C) 2016-2017 by Xose Pérez <xose dot perez at gmail dot com>
  4. */
  5. #include "JustWifi.h"
  6. // -----------------------------------------------------------------------------
  7. // WIFI
  8. // -----------------------------------------------------------------------------
  9. void _wifiWebSocketOnSend(JsonObject& root) {
  10. root["maxNetworks"] = WIFI_MAX_NETWORKS;
  11. JsonArray& wifi = root.createNestedArray("wifi");
  12. for (byte i=0; i<WIFI_MAX_NETWORKS; i++) {
  13. if (getSetting("ssid" + String(i)).length() == 0) break;
  14. JsonObject& network = wifi.createNestedObject();
  15. network["ssid"] = getSetting("ssid" + String(i));
  16. network["pass"] = getSetting("pass" + String(i));
  17. network["ip"] = getSetting("ip" + String(i));
  18. network["gw"] = getSetting("gw" + String(i));
  19. network["mask"] = getSetting("mask" + String(i));
  20. network["dns"] = getSetting("dns" + String(i));
  21. }
  22. }
  23. String getIP() {
  24. if (WiFi.getMode() == WIFI_AP) {
  25. return WiFi.softAPIP().toString();
  26. }
  27. return WiFi.localIP().toString();
  28. }
  29. String getNetwork() {
  30. if (WiFi.getMode() == WIFI_AP) {
  31. return jw.getAPSSID();
  32. }
  33. return WiFi.SSID();
  34. }
  35. void wifiDisconnect() {
  36. jw.disconnect();
  37. }
  38. void resetConnectionTimeout() {
  39. jw.resetReconnectTimeout();
  40. }
  41. bool wifiConnected() {
  42. return jw.connected();
  43. }
  44. bool createAP() {
  45. jw.disconnect();
  46. jw.resetReconnectTimeout();
  47. return jw.createAP();
  48. }
  49. void wifiReconnectCheck() {
  50. bool connected = false;
  51. #if WEB_SUPPORT
  52. if (wsConnected()) connected = true;
  53. #endif
  54. #if TELNET_SUPPORT
  55. if (telnetConnected()) connected = true;
  56. #endif
  57. jw.setReconnectTimeout(connected ? 0 : WIFI_RECONNECT_INTERVAL);
  58. }
  59. void wifiConfigure() {
  60. jw.setHostname(getSetting("hostname").c_str());
  61. jw.setSoftAP(getSetting("hostname").c_str(), getSetting("adminPass", ADMIN_PASS).c_str());
  62. jw.setConnectTimeout(WIFI_CONNECT_TIMEOUT);
  63. wifiReconnectCheck();
  64. jw.setAPMode(WIFI_AP_MODE);
  65. jw.cleanNetworks();
  66. // If system is flagged unstable we do not init wifi networks
  67. #if SYSTEM_CHECK_ENABLED
  68. if (!systemCheck()) return;
  69. #endif
  70. int i;
  71. for (i = 0; i< WIFI_MAX_NETWORKS; i++) {
  72. if (getSetting("ssid" + String(i)).length() == 0) break;
  73. if (getSetting("ip" + String(i)).length() == 0) {
  74. jw.addNetwork(
  75. getSetting("ssid" + String(i)).c_str(),
  76. getSetting("pass" + String(i)).c_str()
  77. );
  78. } else {
  79. jw.addNetwork(
  80. getSetting("ssid" + String(i)).c_str(),
  81. getSetting("pass" + String(i)).c_str(),
  82. getSetting("ip" + String(i)).c_str(),
  83. getSetting("gw" + String(i)).c_str(),
  84. getSetting("mask" + String(i)).c_str(),
  85. getSetting("dns" + String(i)).c_str()
  86. );
  87. }
  88. }
  89. // Scan for best network only if we have more than 1 defined
  90. jw.scanNetworks(i>1);
  91. }
  92. void wifiStatus() {
  93. if (WiFi.getMode() == WIFI_AP_STA) {
  94. DEBUG_MSG_P(PSTR("[WIFI] MODE AP + STA --------------------------------\n"));
  95. } else if (WiFi.getMode() == WIFI_AP) {
  96. DEBUG_MSG_P(PSTR("[WIFI] MODE AP --------------------------------------\n"));
  97. } else if (WiFi.getMode() == WIFI_STA) {
  98. DEBUG_MSG_P(PSTR("[WIFI] MODE STA -------------------------------------\n"));
  99. } else {
  100. DEBUG_MSG_P(PSTR("[WIFI] MODE OFF -------------------------------------\n"));
  101. DEBUG_MSG_P(PSTR("[WIFI] No connection\n"));
  102. }
  103. if ((WiFi.getMode() & WIFI_AP) == WIFI_AP) {
  104. DEBUG_MSG_P(PSTR("[WIFI] SSID %s\n"), jw.getAPSSID().c_str());
  105. DEBUG_MSG_P(PSTR("[WIFI] PASS %s\n"), getSetting("adminPass", ADMIN_PASS).c_str());
  106. DEBUG_MSG_P(PSTR("[WIFI] IP %s\n"), WiFi.softAPIP().toString().c_str());
  107. DEBUG_MSG_P(PSTR("[WIFI] MAC %s\n"), WiFi.softAPmacAddress().c_str());
  108. }
  109. if ((WiFi.getMode() & WIFI_STA) == WIFI_STA) {
  110. DEBUG_MSG_P(PSTR("[WIFI] SSID %s\n"), WiFi.SSID().c_str());
  111. DEBUG_MSG_P(PSTR("[WIFI] IP %s\n"), WiFi.localIP().toString().c_str());
  112. DEBUG_MSG_P(PSTR("[WIFI] MAC %s\n"), WiFi.macAddress().c_str());
  113. DEBUG_MSG_P(PSTR("[WIFI] GW %s\n"), WiFi.gatewayIP().toString().c_str());
  114. DEBUG_MSG_P(PSTR("[WIFI] DNS %s\n"), WiFi.dnsIP().toString().c_str());
  115. DEBUG_MSG_P(PSTR("[WIFI] MASK %s\n"), WiFi.subnetMask().toString().c_str());
  116. DEBUG_MSG_P(PSTR("[WIFI] HOST %s\n"), WiFi.hostname().c_str());
  117. }
  118. DEBUG_MSG_P(PSTR("[WIFI] ----------------------------------------------\n"));
  119. }
  120. bool wifiClean(unsigned char num) {
  121. bool changed = false;
  122. int i = 0;
  123. // Clean defined settings
  124. while (i < num) {
  125. // Skip on first non-defined setting
  126. if (!hasSetting("ssid", i)) {
  127. delSetting("ssid", i);
  128. break;
  129. }
  130. // Delete empty values
  131. if (!hasSetting("pass", i)) delSetting("pass", i);
  132. if (!hasSetting("ip", i)) delSetting("ip", i);
  133. if (!hasSetting("gw", i)) delSetting("gw", i);
  134. if (!hasSetting("mask", i)) delSetting("mask", i);
  135. if (!hasSetting("dns", i)) delSetting("dns", i);
  136. ++i;
  137. }
  138. // Delete all other settings
  139. while (i < WIFI_MAX_NETWORKS) {
  140. changed = hasSetting("ssid", i);
  141. delSetting("ssid", i);
  142. delSetting("pass", i);
  143. delSetting("ip", i);
  144. delSetting("gw", i);
  145. delSetting("mask", i);
  146. delSetting("dns", i);
  147. ++i;
  148. }
  149. return changed;
  150. }
  151. // Inject hardcoded networks
  152. void wifiInject() {
  153. #ifdef WIFI1_SSID
  154. if (getSetting("ssid", 0, "").length() == 0) setSetting("ssid", 0, WIFI1_SSID);
  155. #endif
  156. #ifdef WIFI1_PASS
  157. if (getSetting("pass", 0, "").length() == 0) setSetting("pass", 0, WIFI1_PASS);
  158. #endif
  159. #ifdef WIFI1_IP
  160. if (getSetting("ip", 0, "").length() == 0) setSetting("ip", 0, WIFI1_IP);
  161. #endif
  162. #ifdef WIFI1_GW
  163. if (getSetting("gw", 0, "").length() == 0) setSetting("gw", 0, WIFI1_GW);
  164. #endif
  165. #ifdef WIFI1_MASK
  166. if (getSetting("mask", 0, "").length() == 0) setSetting("mask", 0, WIFI1_MASK);
  167. #endif
  168. #ifdef WIFI1_DNS
  169. if (getSetting("dns", 0, "").length() == 0) setSetting("dns", 0, WIFI1_DNS);
  170. #endif
  171. #ifdef WIFI2_SSID
  172. if (getSetting("ssid", 1, "").length() == 0) setSetting("ssid", 1, WIFI2_SSID);
  173. #endif
  174. #ifdef WIFI2_PASS
  175. if (getSetting("pass", 1, "").length() == 0) setSetting("pass", 1, WIFI2_PASS);
  176. #endif
  177. #ifdef WIFI2_IP
  178. if (getSetting("ip", 1, "").length() == 0) setSetting("ip", 1, WIFI2_IP);
  179. #endif
  180. #ifdef WIFI2_GW
  181. if (getSetting("gw", 1, "").length() == 0) setSetting("gw", 1, WIFI2_GW);
  182. #endif
  183. #ifdef WIFI2_MASK
  184. if (getSetting("mask", 1, "").length() == 0) setSetting("mask", 1, WIFI2_MASK);
  185. #endif
  186. #ifdef WIFI2_DNS
  187. if (getSetting("dns", 1, "").length() == 0) setSetting("dns", 1, WIFI2_DNS);
  188. #endif
  189. }
  190. void wifiSetup() {
  191. #if WIFI_SLEEP_ENABLED
  192. wifi_set_sleep_type(LIGHT_SLEEP_T);
  193. #endif
  194. wifiInject();
  195. wifiConfigure();
  196. // Message callbacks
  197. jw.onMessage([](justwifi_messages_t code, char * parameter) {
  198. #if DEBUG_SUPPORT
  199. if (code == MESSAGE_SCANNING) {
  200. DEBUG_MSG_P(PSTR("[WIFI] Scanning\n"));
  201. }
  202. if (code == MESSAGE_SCAN_FAILED) {
  203. DEBUG_MSG_P(PSTR("[WIFI] Scan failed\n"));
  204. }
  205. if (code == MESSAGE_NO_NETWORKS) {
  206. DEBUG_MSG_P(PSTR("[WIFI] No networks found\n"));
  207. }
  208. if (code == MESSAGE_NO_KNOWN_NETWORKS) {
  209. DEBUG_MSG_P(PSTR("[WIFI] No known networks found\n"));
  210. }
  211. if (code == MESSAGE_FOUND_NETWORK) {
  212. DEBUG_MSG_P(PSTR("[WIFI] %s\n"), parameter);
  213. }
  214. if (code == MESSAGE_CONNECTING) {
  215. DEBUG_MSG_P(PSTR("[WIFI] Connecting to %s\n"), parameter);
  216. }
  217. if (code == MESSAGE_CONNECT_WAITING) {
  218. // too much noise
  219. }
  220. if (code == MESSAGE_CONNECT_FAILED) {
  221. DEBUG_MSG_P(PSTR("[WIFI] Could not connect to %s\n"), parameter);
  222. }
  223. if (code == MESSAGE_CONNECTED) {
  224. wifiStatus();
  225. }
  226. if (code == MESSAGE_ACCESSPOINT_CREATED) {
  227. wifiStatus();
  228. }
  229. if (code == MESSAGE_DISCONNECTED) {
  230. DEBUG_MSG_P(PSTR("[WIFI] Disconnected\n"));
  231. }
  232. if (code == MESSAGE_ACCESSPOINT_CREATING) {
  233. DEBUG_MSG_P(PSTR("[WIFI] Creating access point\n"));
  234. }
  235. if (code == MESSAGE_ACCESSPOINT_FAILED) {
  236. DEBUG_MSG_P(PSTR("[WIFI] Could not create access point\n"));
  237. }
  238. #endif // DEBUG_SUPPORT
  239. #if MDNS_SUPPORT
  240. if (code == MESSAGE_CONNECTED) mdnsFindMQTT();
  241. #endif // MDNS_SUPPORT
  242. });
  243. #if WEB_SUPPORT
  244. wsOnSendRegister(_wifiWebSocketOnSend);
  245. wsOnAfterParseRegister(wifiConfigure);
  246. #endif
  247. }
  248. void wifiLoop() {
  249. jw.loop();
  250. }