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.

383 lines
11 KiB

8 years ago
7 years ago
8 years ago
8 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
8 years ago
7 years ago
8 years ago
7 years ago
8 years ago
7 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. #include <FastLED.h> // W.T.H. is this include ALSO needed here ?!?!!
  18. // -----------------------------------------------------------------------------
  19. // METHODS
  20. // -----------------------------------------------------------------------------
  21. unsigned long _loopDelay = 0;
  22. void hardwareSetup() {
  23. EEPROM.begin(EEPROM_SIZE);
  24. #if DEBUG_SERIAL_SUPPORT
  25. DEBUG_PORT.begin(SERIAL_BAUDRATE);
  26. #if DEBUG_ESP_WIFI
  27. DEBUG_PORT.setDebugOutput(true);
  28. #endif
  29. #elif defined(SERIAL_BAUDRATE)
  30. Serial.begin(SERIAL_BAUDRATE);
  31. #endif
  32. #if SPIFFS_SUPPORT
  33. SPIFFS.begin();
  34. #endif
  35. #if defined(ESPLIVE)
  36. //The ESPLive has an ADC MUX which needs to be configured.
  37. pinMode(16, OUTPUT);
  38. digitalWrite(16, HIGH); //Defualt CT input (pin B, solder jumper B)
  39. #endif
  40. }
  41. void hardwareLoop() {
  42. // Heartbeat
  43. static unsigned long last_uptime = 0;
  44. if ((millis() - last_uptime > HEARTBEAT_INTERVAL) || (last_uptime == 0)) {
  45. last_uptime = millis();
  46. heartbeat();
  47. }
  48. }
  49. // -----------------------------------------------------------------------------
  50. // BOOTING
  51. // -----------------------------------------------------------------------------
  52. unsigned int sectors(size_t size) {
  53. return (int) (size + SPI_FLASH_SEC_SIZE - 1) / SPI_FLASH_SEC_SIZE;
  54. }
  55. void welcome() {
  56. DEBUG_MSG_P(PSTR("\n\n"));
  57. DEBUG_MSG_P(PSTR("[INIT] %s %s\n"), (char *) APP_NAME, (char *) APP_VERSION);
  58. DEBUG_MSG_P(PSTR("[INIT] %s\n"), (char *) APP_AUTHOR);
  59. DEBUG_MSG_P(PSTR("[INIT] %s\n\n"), (char *) APP_WEBSITE);
  60. DEBUG_MSG_P(PSTR("[INIT] CPU chip ID: 0x%06X\n"), ESP.getChipId());
  61. DEBUG_MSG_P(PSTR("[INIT] CPU frequency: %d MHz\n"), ESP.getCpuFreqMHz());
  62. DEBUG_MSG_P(PSTR("[INIT] SDK version: %s\n"), ESP.getSdkVersion());
  63. DEBUG_MSG_P(PSTR("[INIT] Core version: %s\n"), ESP.getCoreVersion().c_str());
  64. DEBUG_MSG_P(PSTR("\n"));
  65. // -------------------------------------------------------------------------
  66. FlashMode_t mode = ESP.getFlashChipMode();
  67. DEBUG_MSG_P(PSTR("[INIT] Flash chip ID: 0x%06X\n"), ESP.getFlashChipId());
  68. DEBUG_MSG_P(PSTR("[INIT] Flash speed: %u Hz\n"), ESP.getFlashChipSpeed());
  69. 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");
  70. DEBUG_MSG_P(PSTR("\n"));
  71. DEBUG_MSG_P(PSTR("[INIT] Flash sector size: %8u bytes\n"), SPI_FLASH_SEC_SIZE);
  72. DEBUG_MSG_P(PSTR("[INIT] Flash size (CHIP): %8u bytes\n"), ESP.getFlashChipRealSize());
  73. DEBUG_MSG_P(PSTR("[INIT] Flash size (SDK): %8u bytes / %4d sectors\n"), ESP.getFlashChipSize(), sectors(ESP.getFlashChipSize()));
  74. DEBUG_MSG_P(PSTR("[INIT] Firmware size: %8u bytes / %4d sectors\n"), ESP.getSketchSize(), sectors(ESP.getSketchSize()));
  75. DEBUG_MSG_P(PSTR("[INIT] OTA size: %8u bytes / %4d sectors\n"), ESP.getFreeSketchSpace(), sectors(ESP.getFreeSketchSpace()));
  76. #if SPIFFS_SUPPORT
  77. FSInfo fs_info;
  78. bool fs = SPIFFS.info(fs_info);
  79. if (fs) {
  80. DEBUG_MSG_P(PSTR("[INIT] SPIFFS size: %8u bytes / %4d sectors\n"), fs_info.totalBytes, sectors(fs_info.totalBytes));
  81. }
  82. #else
  83. DEBUG_MSG_P(PSTR("[INIT] SPIFFS size: %8u bytes / %4d sectors\n"), 0, 0);
  84. #endif
  85. DEBUG_MSG_P(PSTR("[INIT] EEPROM size: %8u bytes / %4d sectors\n"), settingsMaxSize(), sectors(settingsMaxSize()));
  86. DEBUG_MSG_P(PSTR("[INIT] Empty space: %8u bytes / 4 sectors\n"), 4 * SPI_FLASH_SEC_SIZE);
  87. DEBUG_MSG_P(PSTR("\n"));
  88. // -------------------------------------------------------------------------
  89. #if SPIFFS_SUPPORT
  90. if (fs) {
  91. DEBUG_MSG_P(PSTR("[INIT] SPIFFS total size: %8u bytes\n"), fs_info.totalBytes);
  92. DEBUG_MSG_P(PSTR("[INIT] used size: %8u bytes\n"), fs_info.usedBytes);
  93. DEBUG_MSG_P(PSTR("[INIT] block size: %8u bytes\n"), fs_info.blockSize);
  94. DEBUG_MSG_P(PSTR("[INIT] page size: %8u bytes\n"), fs_info.pageSize);
  95. DEBUG_MSG_P(PSTR("[INIT] max files: %8u\n"), fs_info.maxOpenFiles);
  96. DEBUG_MSG_P(PSTR("[INIT] max length: %8u\n"), fs_info.maxPathLength);
  97. } else {
  98. DEBUG_MSG_P(PSTR("[INIT] No SPIFFS partition\n"));
  99. }
  100. DEBUG_MSG_P(PSTR("\n"));
  101. #endif
  102. // -------------------------------------------------------------------------
  103. DEBUG_MSG_P(PSTR("[INIT] MANUFACTURER: %s\n"), MANUFACTURER);
  104. DEBUG_MSG_P(PSTR("[INIT] DEVICE: %s\n"), DEVICE);
  105. DEBUG_MSG_P(PSTR("[INIT] SUPPORT:"));
  106. #if ALEXA_SUPPORT
  107. DEBUG_MSG_P(PSTR(" ALEXA"));
  108. #endif
  109. #if ANALOG_SUPPORT
  110. DEBUG_MSG_P(PSTR(" ANALOG"));
  111. #endif
  112. #if COUNTER_SUPPORT
  113. DEBUG_MSG_P(PSTR(" COUNTER"));
  114. #endif
  115. #if DEBUG_SERIAL_SUPPORT
  116. DEBUG_MSG_P(PSTR(" DEBUG_SERIAL"));
  117. #endif
  118. #if DEBUG_TELNET_SUPPORT
  119. DEBUG_MSG_P(PSTR(" DEBUG_TELNET"));
  120. #endif
  121. #if DEBUG_UDP_SUPPORT
  122. DEBUG_MSG_P(PSTR(" DEBUG_UDP"));
  123. #endif
  124. #if DHT_SUPPORT
  125. DEBUG_MSG_P(PSTR(" DHT"));
  126. #endif
  127. #if DOMOTICZ_SUPPORT
  128. DEBUG_MSG_P(PSTR(" DOMOTICZ"));
  129. #endif
  130. #if DS18B20_SUPPORT
  131. DEBUG_MSG_P(PSTR(" DS18B20"));
  132. #endif
  133. #if HOMEASSISTANT_SUPPORT
  134. DEBUG_MSG_P(PSTR(" HOMEASSISTANT"));
  135. #endif
  136. #if I2C_SUPPORT
  137. DEBUG_MSG_P(PSTR(" I2C"));
  138. #endif
  139. #if INFLUXDB_SUPPORT
  140. DEBUG_MSG_P(PSTR(" INFLUXDB"));
  141. #endif
  142. #if LLMNR_SUPPORT
  143. DEBUG_MSG_P(PSTR(" LLMNR"));
  144. #endif
  145. #if MDNS_SUPPORT
  146. DEBUG_MSG_P(PSTR(" MDNS"));
  147. #endif
  148. #if NOFUSS_SUPPORT
  149. DEBUG_MSG_P(PSTR(" NOFUSS"));
  150. #endif
  151. #if NTP_SUPPORT
  152. DEBUG_MSG_P(PSTR(" NTP"));
  153. #endif
  154. #if RF_SUPPORT
  155. DEBUG_MSG_P(PSTR(" RF"));
  156. #endif
  157. #if SPIFFS_SUPPORT
  158. DEBUG_MSG_P(PSTR(" SPIFFS"));
  159. #endif
  160. #if TELNET_SUPPORT
  161. DEBUG_MSG_P(PSTR(" TELNET"));
  162. #endif
  163. #if TERMINAL_SUPPORT
  164. DEBUG_MSG_P(PSTR(" TERMINAL"));
  165. #endif
  166. #if WEB_SUPPORT
  167. DEBUG_MSG_P(PSTR(" WEB"));
  168. #endif
  169. DEBUG_MSG_P(PSTR("\n\n"));
  170. // -------------------------------------------------------------------------
  171. unsigned char custom_reset = customReset();
  172. if (custom_reset > 0) {
  173. char buffer[32];
  174. strcpy_P(buffer, custom_reset_string[custom_reset-1]);
  175. DEBUG_MSG_P(PSTR("[INIT] Last reset reason: %s\n"), buffer);
  176. } else {
  177. DEBUG_MSG_P(PSTR("[INIT] Last reset reason: %s\n"), (char *) ESP.getResetReason().c_str());
  178. }
  179. DEBUG_MSG_P(PSTR("[INIT] Free heap: %u bytes\n"), ESP.getFreeHeap());
  180. #if ADC_VCC_ENABLED
  181. DEBUG_MSG_P(PSTR("[INIT] Power: %d mV\n"), ESP.getVcc());
  182. #endif
  183. DEBUG_MSG_P(PSTR("[INIT] Power saving delay value: %lu ms\n"), _loopDelay);
  184. DEBUG_MSG_P(PSTR("\n"));
  185. }
  186. void setup() {
  187. // Init EEPROM, Serial and SPIFFS
  188. hardwareSetup();
  189. // Question system stability
  190. #if SYSTEM_CHECK_ENABLED
  191. systemCheck(false);
  192. #endif
  193. // Init persistance and terminal features
  194. settingsSetup();
  195. if (getSetting("hostname").length() == 0) {
  196. setSetting("hostname", getIdentifier());
  197. }
  198. // Cache loop delay value to speed things (recommended max 250ms)
  199. _loopDelay = atol(getSetting("loopDelay", LOOP_DELAY_TIME).c_str());
  200. // Show welcome message and system configuration
  201. welcome();
  202. // Basic modules, will always run
  203. wifiSetup();
  204. otaSetup();
  205. #if TELNET_SUPPORT
  206. telnetSetup();
  207. #endif
  208. // Do not run the next services if system is flagged stable
  209. #if SYSTEM_CHECK_ENABLED
  210. if (!systemCheck()) return;
  211. #endif
  212. // Init webserver required before any module that uses API
  213. #if WEB_SUPPORT
  214. webSetup();
  215. #endif
  216. #if LIGHT_PROVIDER != LIGHT_PROVIDER_NONE
  217. lightSetup();
  218. #endif
  219. relaySetup();
  220. buttonSetup();
  221. ledSetup();
  222. mqttSetup();
  223. #ifdef ITEAD_SONOFF_RFBRIDGE
  224. rfbSetup();
  225. #endif
  226. #if POWER_PROVIDER != POWER_PROVIDER_NONE
  227. powerSetup();
  228. #endif
  229. #if NTP_SUPPORT
  230. ntpSetup();
  231. #endif
  232. #if I2C_SUPPORT
  233. i2cSetup();
  234. #endif
  235. #if ALEXA_SUPPORT
  236. alexaSetup();
  237. #endif
  238. #if NOFUSS_SUPPORT
  239. nofussSetup();
  240. #endif
  241. #if INFLUXDB_SUPPORT
  242. influxDBSetup();
  243. #endif
  244. #if DS18B20_SUPPORT
  245. dsSetup();
  246. #endif
  247. #if ANALOG_SUPPORT
  248. analogSetup();
  249. #endif
  250. #if COUNTER_SUPPORT
  251. counterSetup();
  252. #endif
  253. #if DHT_SUPPORT
  254. dhtSetup();
  255. #endif
  256. #if RF_SUPPORT
  257. rfSetup();
  258. #endif
  259. #if IR_SUPPORT
  260. irSetup();
  261. #endif
  262. #if DOMOTICZ_SUPPORT
  263. domoticzSetup();
  264. #endif
  265. #if HOMEASSISTANT_SUPPORT
  266. haSetup();
  267. #endif
  268. #if LLMNR_SUPPORT
  269. llmnrSetup();
  270. #endif
  271. // Prepare configuration for version 2.0
  272. hwUpwardsCompatibility();
  273. saveSettings();
  274. }
  275. void loop() {
  276. hardwareLoop();
  277. settingsLoop();
  278. wifiLoop();
  279. otaLoop();
  280. #if SYSTEM_CHECK_ENABLED
  281. systemCheckLoop();
  282. // Do not run the next services if system is flagged stable
  283. if (!systemCheck()) return;
  284. #endif
  285. #if LIGHT_PROVIDER != LIGHT_PROVIDER_NONE
  286. lightLoop();
  287. #endif
  288. relayLoop();
  289. buttonLoop();
  290. ledLoop();
  291. mqttLoop();
  292. #ifdef ITEAD_SONOFF_RFBRIDGE
  293. rfbLoop();
  294. #endif
  295. #if POWER_PROVIDER != POWER_PROVIDER_NONE
  296. powerLoop();
  297. #endif
  298. #if NTP_SUPPORT
  299. ntpLoop();
  300. #endif
  301. #if ALEXA_SUPPORT
  302. alexaLoop();
  303. #endif
  304. #if NOFUSS_SUPPORT
  305. nofussLoop();
  306. #endif
  307. #if DS18B20_SUPPORT
  308. dsLoop();
  309. #endif
  310. #if ANALOG_SUPPORT
  311. analogLoop();
  312. #endif
  313. #if COUNTER_SUPPORT
  314. counterLoop();
  315. #endif
  316. #if DHT_SUPPORT
  317. dhtLoop();
  318. #endif
  319. #if RF_SUPPORT
  320. rfLoop();
  321. #endif
  322. #if IR_SUPPORT
  323. irLoop();
  324. #endif
  325. // Power saving delay
  326. delay(_loopDelay);
  327. }