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.

247 lines
6.9 KiB

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
  1. /*
  2. ESPurna
  3. Copyright (C) 2016-2017 by Xose Pérez <xose dot perez at gmail dot com>
  4. This program is free software: you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation, either version 3 of the License, or
  7. (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with this program. If not, see <http://www.gnu.org/licenses/>.
  14. */
  15. #include "config/all.h"
  16. #include <EEPROM.h>
  17. // -----------------------------------------------------------------------------
  18. // METHODS
  19. // -----------------------------------------------------------------------------
  20. void hardwareSetup() {
  21. EEPROM.begin(EEPROM_SIZE);
  22. #if DEBUG_SERIAL_SUPPORT
  23. DEBUG_PORT.begin(SERIAL_BAUDRATE);
  24. #if DEBUG_ESP_WIFI
  25. DEBUG_PORT.setDebugOutput(true);
  26. #endif
  27. #elif defined(SERIAL_BAUDRATE)
  28. Serial.begin(SERIAL_BAUDRATE);
  29. #endif
  30. #if SPIFFS_SUPPORT
  31. SPIFFS.begin();
  32. #endif
  33. }
  34. void hardwareLoop() {
  35. // Heartbeat
  36. static unsigned long last_uptime = 0;
  37. if ((millis() - last_uptime > HEARTBEAT_INTERVAL) || (last_uptime == 0)) {
  38. last_uptime = millis();
  39. heartbeat();
  40. }
  41. }
  42. // -----------------------------------------------------------------------------
  43. // BOOTING
  44. // -----------------------------------------------------------------------------
  45. unsigned int sectors(size_t size) {
  46. return (int) (size + SPI_FLASH_SEC_SIZE - 1) / SPI_FLASH_SEC_SIZE;
  47. }
  48. void welcome() {
  49. DEBUG_MSG_P(PSTR("\n\n"));
  50. DEBUG_MSG_P(PSTR("[INIT] %s %s\n"), (char *) APP_NAME, (char *) APP_VERSION);
  51. DEBUG_MSG_P(PSTR("[INIT] %s\n"), (char *) APP_AUTHOR);
  52. DEBUG_MSG_P(PSTR("[INIT] %s\n\n"), (char *) APP_WEBSITE);
  53. DEBUG_MSG_P(PSTR("[INIT] CPU chip ID: 0x%06X\n"), ESP.getChipId());
  54. DEBUG_MSG_P(PSTR("[INIT] CPU frequency: %d MHz\n"), ESP.getCpuFreqMHz());
  55. DEBUG_MSG_P(PSTR("[INIT] SDK version: %s\n"), ESP.getSdkVersion());
  56. DEBUG_MSG_P(PSTR("[INIT] Core version: %s\n"), ESP.getCoreVersion().c_str());
  57. DEBUG_MSG_P(PSTR("\n"));
  58. FlashMode_t mode = ESP.getFlashChipMode();
  59. DEBUG_MSG_P(PSTR("[INIT] Flash chip ID: 0x%06X\n"), ESP.getFlashChipId());
  60. DEBUG_MSG_P(PSTR("[INIT] Flash speed: %u Hz\n"), ESP.getFlashChipSpeed());
  61. DEBUG_MSG_P(PSTR("[INIT] Flash mode: %s\n"), mode == FM_QIO ? "QIO" : mode == FM_QOUT ? "QOUT" : mode == FM_DIO ? "DIO" : mode == FM_DOUT ? "DOUT" : "UNKNOWN");
  62. DEBUG_MSG_P(PSTR("\n"));
  63. DEBUG_MSG_P(PSTR("[INIT] Flash sector size: %8u bytes\n"), SPI_FLASH_SEC_SIZE);
  64. DEBUG_MSG_P(PSTR("[INIT] Flash size (CHIP): %8u bytes\n"), ESP.getFlashChipRealSize());
  65. DEBUG_MSG_P(PSTR("[INIT] Flash size (SDK): %8u bytes / %4d sectors\n"), ESP.getFlashChipSize(), sectors(ESP.getFlashChipSize()));
  66. DEBUG_MSG_P(PSTR("[INIT] Firmware size: %8u bytes / %4d sectors\n"), ESP.getSketchSize(), sectors(ESP.getSketchSize()));
  67. DEBUG_MSG_P(PSTR("[INIT] OTA size: %8u bytes / %4d sectors\n"), ESP.getFreeSketchSpace(), sectors(ESP.getFreeSketchSpace()));
  68. #if SPIFFS_SUPPORT
  69. FSInfo fs_info;
  70. bool fs = SPIFFS.info(fs_info);
  71. if (fs) {
  72. DEBUG_MSG_P(PSTR("[INIT] SPIFFS size: %8u bytes / %4d sectors\n"), fs_info.totalBytes, sectors(fs_info.totalBytes));
  73. }
  74. #else
  75. DEBUG_MSG_P(PSTR("[INIT] SPIFFS size: %8u bytes / %4d sectors\n"), 0, 0);
  76. #endif
  77. DEBUG_MSG_P(PSTR("[INIT] EEPROM size: %8u bytes / %4d sectors\n"), settingsMaxSize(), sectors(settingsMaxSize()));
  78. DEBUG_MSG_P(PSTR("[INIT] Empty space: %8u bytes / 4 sectors\n"), 4 * SPI_FLASH_SEC_SIZE);
  79. #if SPIFFS_SUPPORT
  80. if (fs) {
  81. DEBUG_MSG_P(PSTR("\n"));
  82. DEBUG_MSG_P(PSTR("[INIT] SPIFFS total size: %8u bytes\n"), fs_info.totalBytes);
  83. DEBUG_MSG_P(PSTR("[INIT] used size: %8u bytes\n"), fs_info.usedBytes);
  84. DEBUG_MSG_P(PSTR("[INIT] block size: %8u bytes\n"), fs_info.blockSize);
  85. DEBUG_MSG_P(PSTR("[INIT] page size: %8u bytes\n"), fs_info.pageSize);
  86. DEBUG_MSG_P(PSTR("[INIT] max files: %8u\n"), fs_info.maxOpenFiles);
  87. DEBUG_MSG_P(PSTR("[INIT] max length: %8u\n"), fs_info.maxPathLength);
  88. }
  89. #endif
  90. DEBUG_MSG_P(PSTR("\n"));
  91. unsigned char custom_reset = customReset();
  92. if (custom_reset > 0) {
  93. char buffer[32];
  94. strcpy_P(buffer, custom_reset_string[custom_reset-1]);
  95. DEBUG_MSG_P(PSTR("[INIT] Last reset reason: %s\n"), buffer);
  96. } else {
  97. DEBUG_MSG_P(PSTR("[INIT] Last reset reason: %s\n"), (char *) ESP.getResetReason().c_str());
  98. }
  99. DEBUG_MSG_P(PSTR("[INIT] Free heap: %u bytes\n"), ESP.getFreeHeap());
  100. initDump();
  101. DEBUG_MSG_P(PSTR("\n\n"));
  102. }
  103. void setup() {
  104. hardwareSetup();
  105. welcome();
  106. settingsSetup();
  107. if (getSetting("hostname").length() == 0) {
  108. setSetting("hostname", getIdentifier());
  109. saveSettings();
  110. }
  111. #if WEB_SUPPORT
  112. webSetup();
  113. #endif
  114. #if LIGHT_PROVIDER != LIGHT_PROVIDER_NONE
  115. lightSetup();
  116. #endif
  117. relaySetup();
  118. buttonSetup();
  119. ledSetup();
  120. delay(500);
  121. wifiSetup();
  122. otaSetup();
  123. mqttSetup();
  124. #ifdef ITEAD_SONOFF_RFBRIDGE
  125. rfbSetup();
  126. #endif
  127. #if NTP_SUPPORT
  128. ntpSetup();
  129. #endif
  130. #if I2C_SUPPORT
  131. i2cSetup();
  132. #endif
  133. #if ALEXA_SUPPORT
  134. alexaSetup();
  135. #endif
  136. #if NOFUSS_SUPPORT
  137. nofussSetup();
  138. #endif
  139. #if INFLUXDB_SUPPORT
  140. influxDBSetup();
  141. #endif
  142. #if HLW8012_SUPPORT
  143. hlw8012Setup();
  144. #endif
  145. #if DS18B20_SUPPORT
  146. dsSetup();
  147. #endif
  148. #if ANALOG_SUPPORT
  149. analogSetup();
  150. #endif
  151. #if DHT_SUPPORT
  152. dhtSetup();
  153. #endif
  154. #if RF_SUPPORT
  155. rfSetup();
  156. #endif
  157. #if EMON_SUPPORT
  158. powerMonitorSetup();
  159. #endif
  160. #if DOMOTICZ_SUPPORT
  161. domoticzSetup();
  162. #endif
  163. // Prepare configuration for version 2.0
  164. hwUpwardsCompatibility();
  165. }
  166. void loop() {
  167. hardwareLoop();
  168. buttonLoop();
  169. relayLoop();
  170. ledLoop();
  171. wifiLoop();
  172. otaLoop();
  173. mqttLoop();
  174. settingsLoop();
  175. #ifdef ITEAD_SONOFF_RFBRIDGE
  176. rfbLoop();
  177. #endif
  178. #if NTP_SUPPORT
  179. ntpLoop();
  180. #endif
  181. #if ALEXA_SUPPORT
  182. alexaLoop();
  183. #endif
  184. #if NOFUSS_SUPPORT
  185. nofussLoop();
  186. #endif
  187. #if HLW8012_SUPPORT
  188. hlw8012Loop();
  189. #endif
  190. #if DS18B20_SUPPORT
  191. dsLoop();
  192. #endif
  193. #if ANALOG_SUPPORT
  194. analogLoop();
  195. #endif
  196. #if DHT_SUPPORT
  197. dhtLoop();
  198. #endif
  199. #if RF_SUPPORT
  200. rfLoop();
  201. #endif
  202. #if EMON_SUPPORT
  203. powerMonitorLoop();
  204. #endif
  205. }