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.

271 lines
7.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. // Inject hardcoded networks
  121. void wifiInject() {
  122. #ifdef WIFI1_SSID
  123. if (getSetting("ssid", 0, "").length() == 0) setSetting("ssid", 0, WIFI1_SSID);
  124. #endif
  125. #ifdef WIFI1_PASS
  126. if (getSetting("pass", 0, "").length() == 0) setSetting("pass", 0, WIFI1_PASS);
  127. #endif
  128. #ifdef WIFI1_IP
  129. if (getSetting("ip", 0, "").length() == 0) setSetting("ip", 0, WIFI1_IP);
  130. #endif
  131. #ifdef WIFI1_GW
  132. if (getSetting("gw", 0, "").length() == 0) setSetting("gw", 0, WIFI1_GW);
  133. #endif
  134. #ifdef WIFI1_MASK
  135. if (getSetting("mask", 0, "").length() == 0) setSetting("mask", 0, WIFI1_MASK);
  136. #endif
  137. #ifdef WIFI1_DNS
  138. if (getSetting("dns", 0, "").length() == 0) setSetting("dns", 0, WIFI1_DNS);
  139. #endif
  140. #ifdef WIFI2_SSID
  141. if (getSetting("ssid", 1, "").length() == 0) setSetting("ssid", 1, WIFI2_SSID);
  142. #endif
  143. #ifdef WIFI2_PASS
  144. if (getSetting("pass", 1, "").length() == 0) setSetting("pass", 1, WIFI2_PASS);
  145. #endif
  146. #ifdef WIFI2_IP
  147. if (getSetting("ip", 1, "").length() == 0) setSetting("ip", 1, WIFI2_IP);
  148. #endif
  149. #ifdef WIFI2_GW
  150. if (getSetting("gw", 1, "").length() == 0) setSetting("gw", 1, WIFI2_GW);
  151. #endif
  152. #ifdef WIFI2_MASK
  153. if (getSetting("mask", 1, "").length() == 0) setSetting("mask", 1, WIFI2_MASK);
  154. #endif
  155. #ifdef WIFI2_DNS
  156. if (getSetting("dns", 1, "").length() == 0) setSetting("dns", 1, WIFI2_DNS);
  157. #endif
  158. }
  159. void wifiSetup() {
  160. #if WIFI_SLEEP_ENABLED
  161. wifi_set_sleep_type(LIGHT_SLEEP_T);
  162. #endif
  163. wifiInject();
  164. wifiConfigure();
  165. // Message callbacks
  166. jw.onMessage([](justwifi_messages_t code, char * parameter) {
  167. #if DEBUG_SUPPORT
  168. if (code == MESSAGE_SCANNING) {
  169. DEBUG_MSG_P(PSTR("[WIFI] Scanning\n"));
  170. }
  171. if (code == MESSAGE_SCAN_FAILED) {
  172. DEBUG_MSG_P(PSTR("[WIFI] Scan failed\n"));
  173. }
  174. if (code == MESSAGE_NO_NETWORKS) {
  175. DEBUG_MSG_P(PSTR("[WIFI] No networks found\n"));
  176. }
  177. if (code == MESSAGE_NO_KNOWN_NETWORKS) {
  178. DEBUG_MSG_P(PSTR("[WIFI] No known networks found\n"));
  179. }
  180. if (code == MESSAGE_FOUND_NETWORK) {
  181. DEBUG_MSG_P(PSTR("[WIFI] %s\n"), parameter);
  182. }
  183. if (code == MESSAGE_CONNECTING) {
  184. DEBUG_MSG_P(PSTR("[WIFI] Connecting to %s\n"), parameter);
  185. }
  186. if (code == MESSAGE_CONNECT_WAITING) {
  187. // too much noise
  188. }
  189. if (code == MESSAGE_CONNECT_FAILED) {
  190. DEBUG_MSG_P(PSTR("[WIFI] Could not connect to %s\n"), parameter);
  191. }
  192. if (code == MESSAGE_CONNECTED) {
  193. wifiStatus();
  194. }
  195. if (code == MESSAGE_ACCESSPOINT_CREATED) {
  196. wifiStatus();
  197. }
  198. if (code == MESSAGE_DISCONNECTED) {
  199. DEBUG_MSG_P(PSTR("[WIFI] Disconnected\n"));
  200. }
  201. if (code == MESSAGE_ACCESSPOINT_CREATING) {
  202. DEBUG_MSG_P(PSTR("[WIFI] Creating access point\n"));
  203. }
  204. if (code == MESSAGE_ACCESSPOINT_FAILED) {
  205. DEBUG_MSG_P(PSTR("[WIFI] Could not create access point\n"));
  206. }
  207. #endif // DEBUG_SUPPORT
  208. #if MDNS_SUPPORT
  209. if (code == MESSAGE_CONNECTED) mdnsFindMQTT();
  210. #endif // MDNS_SUPPORT
  211. });
  212. #if WEB_SUPPORT
  213. wsOnSendRegister(_wifiWebSocketOnSend);
  214. #endif
  215. }
  216. void wifiLoop() {
  217. jw.loop();
  218. }