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.

440 lines
12 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
7 years ago
6 years ago
6 years ago
7 years ago
7 years ago
8 years ago
7 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. unsigned long _loopDelay = 0;
  21. void hardwareSetup() {
  22. EEPROM.begin(EEPROM_SIZE);
  23. #if DEBUG_SERIAL_SUPPORT
  24. DEBUG_PORT.begin(SERIAL_BAUDRATE);
  25. #if DEBUG_ESP_WIFI
  26. DEBUG_PORT.setDebugOutput(true);
  27. #endif
  28. #elif defined(SERIAL_BAUDRATE)
  29. Serial.begin(SERIAL_BAUDRATE);
  30. #endif
  31. #if SPIFFS_SUPPORT
  32. SPIFFS.begin();
  33. #endif
  34. #if defined(ESPLIVE)
  35. //The ESPLive has an ADC MUX which needs to be configured.
  36. pinMode(16, OUTPUT);
  37. digitalWrite(16, HIGH); //Defualt CT input (pin B, solder jumper B)
  38. #endif
  39. }
  40. void hardwareLoop() {
  41. // Heartbeat
  42. static unsigned long last = 0;
  43. if ((last == 0) || (millis() - last > HEARTBEAT_INTERVAL)) {
  44. last = millis();
  45. heartbeat();
  46. }
  47. }
  48. // -----------------------------------------------------------------------------
  49. // BOOTING
  50. // -----------------------------------------------------------------------------
  51. unsigned int sectors(size_t size) {
  52. return (int) (size + SPI_FLASH_SEC_SIZE - 1) / SPI_FLASH_SEC_SIZE;
  53. }
  54. void welcome() {
  55. DEBUG_MSG_P(PSTR("\n\n"));
  56. DEBUG_MSG_P(PSTR("[INIT] %s %s\n"), (char *) APP_NAME, (char *) APP_VERSION);
  57. DEBUG_MSG_P(PSTR("[INIT] %s\n"), (char *) APP_AUTHOR);
  58. DEBUG_MSG_P(PSTR("[INIT] %s\n\n"), (char *) APP_WEBSITE);
  59. DEBUG_MSG_P(PSTR("[INIT] CPU chip ID: 0x%06X\n"), ESP.getChipId());
  60. DEBUG_MSG_P(PSTR("[INIT] CPU frequency: %d MHz\n"), ESP.getCpuFreqMHz());
  61. DEBUG_MSG_P(PSTR("[INIT] SDK version: %s\n"), ESP.getSdkVersion());
  62. DEBUG_MSG_P(PSTR("[INIT] Core version: %s\n"), getCoreVersion().c_str());
  63. DEBUG_MSG_P(PSTR("[INIT] Core revision: %s\n"), getCoreRevision().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 DEBUG_SERIAL_SUPPORT
  110. DEBUG_MSG_P(PSTR(" DEBUG_SERIAL"));
  111. #endif
  112. #if DEBUG_TELNET_SUPPORT
  113. DEBUG_MSG_P(PSTR(" DEBUG_TELNET"));
  114. #endif
  115. #if DEBUG_UDP_SUPPORT
  116. DEBUG_MSG_P(PSTR(" DEBUG_UDP"));
  117. #endif
  118. #if DOMOTICZ_SUPPORT
  119. DEBUG_MSG_P(PSTR(" DOMOTICZ"));
  120. #endif
  121. #if HOMEASSISTANT_SUPPORT
  122. DEBUG_MSG_P(PSTR(" HOMEASSISTANT"));
  123. #endif
  124. #if I2C_SUPPORT
  125. DEBUG_MSG_P(PSTR(" I2C"));
  126. #endif
  127. #if INFLUXDB_SUPPORT
  128. DEBUG_MSG_P(PSTR(" INFLUXDB"));
  129. #endif
  130. #if LLMNR_SUPPORT
  131. DEBUG_MSG_P(PSTR(" LLMNR"));
  132. #endif
  133. #if MDNS_SUPPORT
  134. DEBUG_MSG_P(PSTR(" MDNS"));
  135. #endif
  136. #if NETBIOS_SUPPORT
  137. DEBUG_MSG_P(PSTR(" NETBIOS"));
  138. #endif
  139. #if NOFUSS_SUPPORT
  140. DEBUG_MSG_P(PSTR(" NOFUSS"));
  141. #endif
  142. #if NTP_SUPPORT
  143. DEBUG_MSG_P(PSTR(" NTP"));
  144. #endif
  145. #if RF_SUPPORT
  146. DEBUG_MSG_P(PSTR(" RF"));
  147. #endif
  148. #if SENSOR_SUPPORT
  149. DEBUG_MSG_P(PSTR(" SENSOR"));
  150. #endif
  151. #if SPIFFS_SUPPORT
  152. DEBUG_MSG_P(PSTR(" SPIFFS"));
  153. #endif
  154. #if SSDP_SUPPORT
  155. DEBUG_MSG_P(PSTR(" SSDP"));
  156. #endif
  157. #if TELNET_SUPPORT
  158. DEBUG_MSG_P(PSTR(" TELNET"));
  159. #endif
  160. #if TERMINAL_SUPPORT
  161. DEBUG_MSG_P(PSTR(" TERMINAL"));
  162. #endif
  163. #if THINGSPEAK_SUPPORT
  164. DEBUG_MSG_P(PSTR(" THINGSPEAK"));
  165. #endif
  166. #if WEB_SUPPORT
  167. DEBUG_MSG_P(PSTR(" WEB"));
  168. #endif
  169. #if SENSOR_SUPPORT
  170. DEBUG_MSG_P(PSTR("\n[INIT] SENSORS:"));
  171. #if ANALOG_SUPPORT
  172. DEBUG_MSG_P(PSTR(" ANALOG"));
  173. #endif
  174. #if BMX280_SUPPORT
  175. DEBUG_MSG_P(PSTR(" BMX280"));
  176. #endif
  177. #if DALLAS_SUPPORT
  178. DEBUG_MSG_P(PSTR(" DALLAS"));
  179. #endif
  180. #if DHT_SUPPORT
  181. DEBUG_MSG_P(PSTR(" DHTXX"));
  182. #endif
  183. #if DIGITAL_SUPPORT
  184. DEBUG_MSG_P(PSTR(" DIGITAL"));
  185. #endif
  186. #if ECH1560_SUPPORT
  187. DEBUG_MSG_P(PSTR(" ECH1560"));
  188. #endif
  189. #if EMON_ADC121_SUPPORT
  190. DEBUG_MSG_P(PSTR(" EMON_ADC121"));
  191. #endif
  192. #if EMON_ADS1X15_SUPPORT
  193. DEBUG_MSG_P(PSTR(" EMON_ADX1X15"));
  194. #endif
  195. #if EMON_ANALOG_SUPPORT
  196. DEBUG_MSG_P(PSTR(" EMON_ANALOG"));
  197. #endif
  198. #if EVENTS_SUPPORT
  199. DEBUG_MSG_P(PSTR(" EVENTS"));
  200. #endif
  201. #if HLW8012_SUPPORT
  202. DEBUG_MSG_P(PSTR(" HLW8012"));
  203. #endif
  204. #if MHZ19_SUPPORT
  205. DEBUG_MSG_P(PSTR(" MHZ19"));
  206. #endif
  207. #if PMSX003_SUPPORT
  208. DEBUG_MSG_P(PSTR(" PMSX003"));
  209. #endif
  210. #if SHT3X_I2C_SUPPORT
  211. DEBUG_MSG_P(PSTR(" SHT3X_I2C"));
  212. #endif
  213. #if SI7021_SUPPORT
  214. DEBUG_MSG_P(PSTR(" SI7021"));
  215. #endif
  216. #if V9261F_SUPPORT
  217. DEBUG_MSG_P(PSTR(" V9261F"));
  218. #endif
  219. #endif // SENSOR_SUPPORT
  220. DEBUG_MSG_P(PSTR("\n\n"));
  221. // -------------------------------------------------------------------------
  222. unsigned char reason = resetReason();
  223. if (reason > 0) {
  224. char buffer[32];
  225. strcpy_P(buffer, custom_reset_string[reason-1]);
  226. DEBUG_MSG_P(PSTR("[INIT] Last reset reason: %s\n"), buffer);
  227. } else {
  228. DEBUG_MSG_P(PSTR("[INIT] Last reset reason: %s\n"), (char *) ESP.getResetReason().c_str());
  229. }
  230. DEBUG_MSG_P(PSTR("[INIT] Free heap: %u bytes\n"), getFreeHeap());
  231. #if ADC_VCC_ENABLED
  232. DEBUG_MSG_P(PSTR("[INIT] Power: %d mV\n"), ESP.getVcc());
  233. #endif
  234. DEBUG_MSG_P(PSTR("[INIT] Power saving delay value: %lu ms\n"), _loopDelay);
  235. DEBUG_MSG_P(PSTR("\n"));
  236. }
  237. void setup() {
  238. // Init EEPROM, Serial and SPIFFS
  239. hardwareSetup();
  240. // Question system stability
  241. #if SYSTEM_CHECK_ENABLED
  242. systemCheck(false);
  243. #endif
  244. // Init persistance and terminal features
  245. settingsSetup();
  246. if (getSetting("hostname").length() == 0) {
  247. setSetting("hostname", getIdentifier());
  248. }
  249. // Cache loop delay value to speed things (recommended max 250ms)
  250. _loopDelay = atol(getSetting("loopDelay", LOOP_DELAY_TIME).c_str());
  251. // Show welcome message and system configuration
  252. welcome();
  253. // Basic modules, will always run
  254. wifiSetup();
  255. otaSetup();
  256. #if TELNET_SUPPORT
  257. telnetSetup();
  258. #endif
  259. // Do not run the next services if system is flagged stable
  260. #if SYSTEM_CHECK_ENABLED
  261. if (!systemCheck()) return;
  262. #endif
  263. // Init webserver required before any module that uses API
  264. #if WEB_SUPPORT
  265. webSetup();
  266. wsSetup();
  267. apiSetup();
  268. #endif
  269. #if LIGHT_PROVIDER != LIGHT_PROVIDER_NONE
  270. lightSetup();
  271. #endif
  272. relaySetup();
  273. buttonSetup();
  274. ledSetup();
  275. #if MQTT_SUPPORT
  276. mqttSetup();
  277. #endif
  278. #if MDNS_SUPPORT
  279. mdnsSetup();
  280. #endif
  281. #if LLMNR_SUPPORT
  282. llmnrSetup();
  283. #endif
  284. #if NETBIOS_SUPPORT
  285. netbiosSetup();
  286. #endif
  287. #if SSDP_SUPPORT
  288. ssdpSetup();
  289. #endif
  290. #if NTP_SUPPORT
  291. ntpSetup();
  292. #endif
  293. #if I2C_SUPPORT
  294. i2cSetup();
  295. #if I2C_CLEAR_BUS
  296. i2cClearBus();
  297. #endif
  298. i2cScan();
  299. #endif
  300. #ifdef ITEAD_SONOFF_RFBRIDGE
  301. rfbSetup();
  302. #endif
  303. #if ALEXA_SUPPORT
  304. alexaSetup();
  305. #endif
  306. #if NOFUSS_SUPPORT
  307. nofussSetup();
  308. #endif
  309. #if INFLUXDB_SUPPORT
  310. idbSetup();
  311. #endif
  312. #if THINGSPEAK_SUPPORT
  313. tspkSetup();
  314. #endif
  315. #if RF_SUPPORT
  316. rfSetup();
  317. #endif
  318. #if IR_SUPPORT
  319. irSetup();
  320. #endif
  321. #if DOMOTICZ_SUPPORT
  322. domoticzSetup();
  323. #endif
  324. #if HOMEASSISTANT_SUPPORT
  325. haSetup();
  326. #endif
  327. #if SENSOR_SUPPORT
  328. sensorSetup();
  329. #endif
  330. // Prepare configuration for version 2.0
  331. migrate();
  332. saveSettings();
  333. }
  334. void loop() {
  335. hardwareLoop();
  336. settingsLoop();
  337. wifiLoop();
  338. otaLoop();
  339. #if SYSTEM_CHECK_ENABLED
  340. systemCheckLoop();
  341. // Do not run the next services if system is flagged stable
  342. if (!systemCheck()) return;
  343. #endif
  344. #if LIGHT_PROVIDER != LIGHT_PROVIDER_NONE
  345. lightLoop();
  346. #endif
  347. relayLoop();
  348. buttonLoop();
  349. ledLoop();
  350. #if MQTT_SUPPORT
  351. mqttLoop();
  352. #endif
  353. #ifdef ITEAD_SONOFF_RFBRIDGE
  354. rfbLoop();
  355. #endif
  356. #if SSDP_SUPPORT
  357. ssdpLoop();
  358. #endif
  359. #if NTP_SUPPORT
  360. ntpLoop();
  361. #endif
  362. #if ALEXA_SUPPORT
  363. alexaLoop();
  364. #endif
  365. #if NOFUSS_SUPPORT
  366. nofussLoop();
  367. #endif
  368. #if RF_SUPPORT
  369. rfLoop();
  370. #endif
  371. #if IR_SUPPORT
  372. irLoop();
  373. #endif
  374. #if SENSOR_SUPPORT
  375. sensorLoop();
  376. #endif
  377. // Power saving delay
  378. delay(_loopDelay);
  379. }