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.

519 lines
16 KiB

6 years ago
6 years ago
6 years ago
  1. /*
  2. UTILS MODULE
  3. Copyright (C) 2017-2018 by Xose Pérez <xose dot perez at gmail dot com>
  4. */
  5. #include <Ticker.h>
  6. Ticker _defer_reset;
  7. String getIdentifier() {
  8. char buffer[20];
  9. snprintf_P(buffer, sizeof(buffer), PSTR("%s_%06X"), APP_NAME, ESP.getChipId());
  10. return String(buffer);
  11. }
  12. void setBoardName() {
  13. #ifndef ESPURNA_CORE
  14. setSetting("boardName", DEVICE_NAME);
  15. #endif
  16. }
  17. String getBoardName() {
  18. return getSetting("boardName", DEVICE_NAME);
  19. }
  20. String getCoreVersion() {
  21. String version = ESP.getCoreVersion();
  22. #ifdef ARDUINO_ESP8266_RELEASE
  23. if (version.equals("00000000")) {
  24. version = String(ARDUINO_ESP8266_RELEASE);
  25. }
  26. #endif
  27. return version;
  28. }
  29. String getCoreRevision() {
  30. #ifdef ARDUINO_ESP8266_GIT_VER
  31. return String(ARDUINO_ESP8266_GIT_VER);
  32. #else
  33. return String("");
  34. #endif
  35. }
  36. // WTF
  37. // Calling ESP.getFreeHeap() is making the system crash on a specific
  38. // AiLight bulb, but anywhere else...
  39. unsigned int getFreeHeap() {
  40. if (getSetting("wtfHeap", 0).toInt() == 1) return 9999;
  41. return ESP.getFreeHeap();
  42. }
  43. String buildTime() {
  44. const char time_now[] = __TIME__; // hh:mm:ss
  45. unsigned int hour = atoi(&time_now[0]);
  46. unsigned int minute = atoi(&time_now[3]);
  47. unsigned int second = atoi(&time_now[6]);
  48. const char date_now[] = __DATE__; // Mmm dd yyyy
  49. const char *months[] = {"Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" };
  50. unsigned int month = 0;
  51. for ( int i = 0; i < 12; i++ ) {
  52. if (strncmp(date_now, months[i], 3) == 0 ) {
  53. month = i + 1;
  54. break;
  55. }
  56. }
  57. unsigned int day = atoi(&date_now[3]);
  58. unsigned int year = atoi(&date_now[7]);
  59. char buffer[20];
  60. snprintf_P(
  61. buffer, sizeof(buffer), PSTR("%04d-%02d-%02d %02d:%02d:%02d"),
  62. year, month, day, hour, minute, second
  63. );
  64. return String(buffer);
  65. }
  66. unsigned long getUptime() {
  67. static unsigned long last_uptime = 0;
  68. static unsigned char uptime_overflows = 0;
  69. if (millis() < last_uptime) ++uptime_overflows;
  70. last_uptime = millis();
  71. unsigned long uptime_seconds = uptime_overflows * (UPTIME_OVERFLOW / 1000) + (last_uptime / 1000);
  72. return uptime_seconds;
  73. }
  74. #if HEARTBEAT_ENABLED
  75. void heartbeat() {
  76. unsigned long uptime_seconds = getUptime();
  77. unsigned int free_heap = getFreeHeap();
  78. #if MQTT_SUPPORT
  79. bool serial = !mqttConnected();
  80. #else
  81. bool serial = true;
  82. #endif
  83. // -------------------------------------------------------------------------
  84. // Serial
  85. // -------------------------------------------------------------------------
  86. if (serial) {
  87. DEBUG_MSG_P(PSTR("[MAIN] Uptime: %lu seconds\n"), uptime_seconds);
  88. DEBUG_MSG_P(PSTR("[MAIN] Free heap: %lu bytes\n"), free_heap);
  89. #if ADC_VCC_ENABLED
  90. DEBUG_MSG_P(PSTR("[MAIN] Power: %lu mV\n"), ESP.getVcc());
  91. #endif
  92. #if NTP_SUPPORT
  93. if (ntpSynced()) DEBUG_MSG_P(PSTR("[MAIN] Time: %s\n"), (char *) ntpDateTime().c_str());
  94. #endif
  95. }
  96. // -------------------------------------------------------------------------
  97. // MQTT
  98. // -------------------------------------------------------------------------
  99. #if MQTT_SUPPORT
  100. if (!serial) {
  101. #if (HEARTBEAT_REPORT_INTERVAL)
  102. mqttSend(MQTT_TOPIC_INTERVAL, HEARTBEAT_INTERVAL / 1000);
  103. #endif
  104. #if (HEARTBEAT_REPORT_APP)
  105. mqttSend(MQTT_TOPIC_APP, APP_NAME);
  106. #endif
  107. #if (HEARTBEAT_REPORT_VERSION)
  108. mqttSend(MQTT_TOPIC_VERSION, APP_VERSION);
  109. #endif
  110. #if (HEARTBEAT_REPORT_BOARD)
  111. mqttSend(MQTT_TOPIC_BOARD, getBoardName().c_str());
  112. #endif
  113. #if (HEARTBEAT_REPORT_HOSTNAME)
  114. mqttSend(MQTT_TOPIC_HOSTNAME, getSetting("hostname").c_str());
  115. #endif
  116. #if (HEARTBEAT_REPORT_IP)
  117. mqttSend(MQTT_TOPIC_IP, getIP().c_str());
  118. #endif
  119. #if (HEARTBEAT_REPORT_MAC)
  120. mqttSend(MQTT_TOPIC_MAC, WiFi.macAddress().c_str());
  121. #endif
  122. #if (HEARTBEAT_REPORT_RSSI)
  123. mqttSend(MQTT_TOPIC_RSSI, String(WiFi.RSSI()).c_str());
  124. #endif
  125. #if (HEARTBEAT_REPORT_UPTIME)
  126. mqttSend(MQTT_TOPIC_UPTIME, String(uptime_seconds).c_str());
  127. #endif
  128. #if (HEARTBEAT_REPORT_DATETIME) && (NTP_SUPPORT)
  129. if (ntpSynced()) mqttSend(MQTT_TOPIC_DATETIME, ntpDateTime().c_str());
  130. #endif
  131. #if (HEARTBEAT_REPORT_FREEHEAP)
  132. mqttSend(MQTT_TOPIC_FREEHEAP, String(free_heap).c_str());
  133. #endif
  134. #if (HEARTBEAT_REPORT_RELAY)
  135. relayMQTT();
  136. #endif
  137. #if (LIGHT_PROVIDER != LIGHT_PROVIDER_NONE) & (HEARTBEAT_REPORT_LIGHT)
  138. lightMQTT();
  139. #endif
  140. #if (HEARTBEAT_REPORT_VCC)
  141. #if ADC_VCC_ENABLED
  142. mqttSend(MQTT_TOPIC_VCC, String(ESP.getVcc()).c_str());
  143. #endif
  144. #endif
  145. #if (HEARTBEAT_REPORT_STATUS)
  146. mqttSend(MQTT_TOPIC_STATUS, MQTT_STATUS_ONLINE, true);
  147. #endif
  148. #if (LOADAVG_REPORT)
  149. mqttSend(MQTT_TOPIC_LOADAVG, String(getLoadAverage()).c_str());
  150. #endif
  151. }
  152. #endif
  153. // -------------------------------------------------------------------------
  154. // InfluxDB
  155. // -------------------------------------------------------------------------
  156. #if INFLUXDB_SUPPORT
  157. #if (HEARTBEAT_REPORT_UPTIME)
  158. idbSend(MQTT_TOPIC_UPTIME, String(uptime_seconds).c_str());
  159. #endif
  160. #if (HEARTBEAT_REPORT_FREEHEAP)
  161. idbSend(MQTT_TOPIC_FREEHEAP, String(free_heap).c_str());
  162. #endif
  163. #endif
  164. }
  165. #endif /// HEARTBEAT_ENABLED
  166. unsigned int sectors(size_t size) {
  167. return (int) (size + SPI_FLASH_SEC_SIZE - 1) / SPI_FLASH_SEC_SIZE;
  168. }
  169. void info() {
  170. DEBUG_MSG_P(PSTR("\n\n"));
  171. DEBUG_MSG_P(PSTR("[INIT] %s %s\n"), (char *) APP_NAME, (char *) APP_VERSION);
  172. DEBUG_MSG_P(PSTR("[INIT] %s\n"), (char *) APP_AUTHOR);
  173. DEBUG_MSG_P(PSTR("[INIT] %s\n\n"), (char *) APP_WEBSITE);
  174. DEBUG_MSG_P(PSTR("[INIT] CPU chip ID: 0x%06X\n"), ESP.getChipId());
  175. DEBUG_MSG_P(PSTR("[INIT] CPU frequency: %u MHz\n"), ESP.getCpuFreqMHz());
  176. DEBUG_MSG_P(PSTR("[INIT] SDK version: %s\n"), ESP.getSdkVersion());
  177. DEBUG_MSG_P(PSTR("[INIT] Core version: %s\n"), getCoreVersion().c_str());
  178. DEBUG_MSG_P(PSTR("[INIT] Core revision: %s\n"), getCoreRevision().c_str());
  179. DEBUG_MSG_P(PSTR("\n"));
  180. // -------------------------------------------------------------------------
  181. FlashMode_t mode = ESP.getFlashChipMode();
  182. DEBUG_MSG_P(PSTR("[INIT] Flash chip ID: 0x%06X\n"), ESP.getFlashChipId());
  183. DEBUG_MSG_P(PSTR("[INIT] Flash speed: %u Hz\n"), ESP.getFlashChipSpeed());
  184. 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");
  185. DEBUG_MSG_P(PSTR("\n"));
  186. DEBUG_MSG_P(PSTR("[INIT] Flash sector size: %8u bytes\n"), SPI_FLASH_SEC_SIZE);
  187. DEBUG_MSG_P(PSTR("[INIT] Flash size (CHIP): %8u bytes\n"), ESP.getFlashChipRealSize());
  188. DEBUG_MSG_P(PSTR("[INIT] Flash size (SDK): %8u bytes / %4d sectors\n"), ESP.getFlashChipSize(), sectors(ESP.getFlashChipSize()));
  189. DEBUG_MSG_P(PSTR("[INIT] Firmware size: %8u bytes / %4d sectors\n"), ESP.getSketchSize(), sectors(ESP.getSketchSize()));
  190. DEBUG_MSG_P(PSTR("[INIT] OTA size: %8u bytes / %4d sectors\n"), ESP.getFreeSketchSpace(), sectors(ESP.getFreeSketchSpace()));
  191. #if SPIFFS_SUPPORT
  192. FSInfo fs_info;
  193. bool fs = SPIFFS.info(fs_info);
  194. if (fs) {
  195. DEBUG_MSG_P(PSTR("[INIT] SPIFFS size: %8u bytes / %4d sectors\n"), fs_info.totalBytes, sectors(fs_info.totalBytes));
  196. }
  197. #else
  198. DEBUG_MSG_P(PSTR("[INIT] SPIFFS size: %8u bytes / %4d sectors\n"), 0, 0);
  199. #endif
  200. DEBUG_MSG_P(PSTR("[INIT] EEPROM size: %8u bytes / %4d sectors\n"), settingsMaxSize(), sectors(settingsMaxSize()));
  201. DEBUG_MSG_P(PSTR("[INIT] Empty space: %8u bytes / 4 sectors\n"), 4 * SPI_FLASH_SEC_SIZE);
  202. DEBUG_MSG_P(PSTR("\n"));
  203. // -------------------------------------------------------------------------
  204. #if SPIFFS_SUPPORT
  205. if (fs) {
  206. DEBUG_MSG_P(PSTR("[INIT] SPIFFS total size: %8u bytes\n"), fs_info.totalBytes);
  207. DEBUG_MSG_P(PSTR("[INIT] used size: %8u bytes\n"), fs_info.usedBytes);
  208. DEBUG_MSG_P(PSTR("[INIT] block size: %8u bytes\n"), fs_info.blockSize);
  209. DEBUG_MSG_P(PSTR("[INIT] page size: %8u bytes\n"), fs_info.pageSize);
  210. DEBUG_MSG_P(PSTR("[INIT] max files: %8u\n"), fs_info.maxOpenFiles);
  211. DEBUG_MSG_P(PSTR("[INIT] max length: %8u\n"), fs_info.maxPathLength);
  212. } else {
  213. DEBUG_MSG_P(PSTR("[INIT] No SPIFFS partition\n"));
  214. }
  215. DEBUG_MSG_P(PSTR("\n"));
  216. #endif
  217. // -------------------------------------------------------------------------
  218. #ifdef APP_BUILD_FLAGS
  219. DEBUG_MSG_P(PSTR("[INIT] BUILD_FLAGS: %s\n"), APP_BUILD_FLAGS);
  220. #endif
  221. DEBUG_MSG_P(PSTR("[INIT] BOARD: %s\n"), getBoardName().c_str());
  222. DEBUG_MSG_P(PSTR("[INIT] SUPPORT:"));
  223. #if ALEXA_SUPPORT
  224. DEBUG_MSG_P(PSTR(" ALEXA"));
  225. #endif
  226. #if BROKER_SUPPORT
  227. DEBUG_MSG_P(PSTR(" BROKER"));
  228. #endif
  229. #if DEBUG_SERIAL_SUPPORT
  230. DEBUG_MSG_P(PSTR(" DEBUG_SERIAL"));
  231. #endif
  232. #if DEBUG_TELNET_SUPPORT
  233. DEBUG_MSG_P(PSTR(" DEBUG_TELNET"));
  234. #endif
  235. #if DEBUG_UDP_SUPPORT
  236. DEBUG_MSG_P(PSTR(" DEBUG_UDP"));
  237. #endif
  238. #if DOMOTICZ_SUPPORT
  239. DEBUG_MSG_P(PSTR(" DOMOTICZ"));
  240. #endif
  241. #if HOMEASSISTANT_SUPPORT
  242. DEBUG_MSG_P(PSTR(" HOMEASSISTANT"));
  243. #endif
  244. #if I2C_SUPPORT
  245. DEBUG_MSG_P(PSTR(" I2C"));
  246. #endif
  247. #if INFLUXDB_SUPPORT
  248. DEBUG_MSG_P(PSTR(" INFLUXDB"));
  249. #endif
  250. #if LLMNR_SUPPORT
  251. DEBUG_MSG_P(PSTR(" LLMNR"));
  252. #endif
  253. #if MDNS_SERVER_SUPPORT
  254. DEBUG_MSG_P(PSTR(" MDNS_SERVER"));
  255. #endif
  256. #if MDNS_CLIENT_SUPPORT
  257. DEBUG_MSG_P(PSTR(" MDNS_CLIENT"));
  258. #endif
  259. #if NETBIOS_SUPPORT
  260. DEBUG_MSG_P(PSTR(" NETBIOS"));
  261. #endif
  262. #if NOFUSS_SUPPORT
  263. DEBUG_MSG_P(PSTR(" NOFUSS"));
  264. #endif
  265. #if NTP_SUPPORT
  266. DEBUG_MSG_P(PSTR(" NTP"));
  267. #endif
  268. #if RF_SUPPORT
  269. DEBUG_MSG_P(PSTR(" RF"));
  270. #endif
  271. #if SCHEDULER_SUPPORT
  272. DEBUG_MSG_P(PSTR(" SCHEDULER"));
  273. #endif
  274. #if SENSOR_SUPPORT
  275. DEBUG_MSG_P(PSTR(" SENSOR"));
  276. #endif
  277. #if SPIFFS_SUPPORT
  278. DEBUG_MSG_P(PSTR(" SPIFFS"));
  279. #endif
  280. #if SSDP_SUPPORT
  281. DEBUG_MSG_P(PSTR(" SSDP"));
  282. #endif
  283. #if TELNET_SUPPORT
  284. DEBUG_MSG_P(PSTR(" TELNET"));
  285. #endif
  286. #if TERMINAL_SUPPORT
  287. DEBUG_MSG_P(PSTR(" TERMINAL"));
  288. #endif
  289. #if THINGSPEAK_SUPPORT
  290. DEBUG_MSG_P(PSTR(" THINGSPEAK"));
  291. #endif
  292. #if UART_MQTT_SUPPORT
  293. DEBUG_MSG_P(PSTR(" UART_MQTT"));
  294. #endif
  295. #if WEB_SUPPORT
  296. DEBUG_MSG_P(PSTR(" WEB"));
  297. #endif
  298. #if SENSOR_SUPPORT
  299. DEBUG_MSG_P(PSTR("\n"));
  300. DEBUG_MSG_P(PSTR("[INIT] SENSORS:"));
  301. #if ANALOG_SUPPORT
  302. DEBUG_MSG_P(PSTR(" ANALOG"));
  303. #endif
  304. #if BMX280_SUPPORT
  305. DEBUG_MSG_P(PSTR(" BMX280"));
  306. #endif
  307. #if DALLAS_SUPPORT
  308. DEBUG_MSG_P(PSTR(" DALLAS"));
  309. #endif
  310. #if DHT_SUPPORT
  311. DEBUG_MSG_P(PSTR(" DHTXX"));
  312. #endif
  313. #if DIGITAL_SUPPORT
  314. DEBUG_MSG_P(PSTR(" DIGITAL"));
  315. #endif
  316. #if ECH1560_SUPPORT
  317. DEBUG_MSG_P(PSTR(" ECH1560"));
  318. #endif
  319. #if EMON_ADC121_SUPPORT
  320. DEBUG_MSG_P(PSTR(" EMON_ADC121"));
  321. #endif
  322. #if EMON_ADS1X15_SUPPORT
  323. DEBUG_MSG_P(PSTR(" EMON_ADX1X15"));
  324. #endif
  325. #if EMON_ANALOG_SUPPORT
  326. DEBUG_MSG_P(PSTR(" EMON_ANALOG"));
  327. #endif
  328. #if EVENTS_SUPPORT
  329. DEBUG_MSG_P(PSTR(" EVENTS"));
  330. #endif
  331. #if HLW8012_SUPPORT
  332. DEBUG_MSG_P(PSTR(" HLW8012"));
  333. #endif
  334. #if MHZ19_SUPPORT
  335. DEBUG_MSG_P(PSTR(" MHZ19"));
  336. #endif
  337. #if PMSX003_SUPPORT
  338. DEBUG_MSG_P(PSTR(" PMSX003"));
  339. #endif
  340. #if PZEM004T_SUPPORT
  341. DEBUG_MSG_P(PSTR(" PZEM004T"));
  342. #endif
  343. #if SHT3X_I2C_SUPPORT
  344. DEBUG_MSG_P(PSTR(" SHT3X_I2C"));
  345. #endif
  346. #if SI7021_SUPPORT
  347. DEBUG_MSG_P(PSTR(" SI7021"));
  348. #endif
  349. #if V9261F_SUPPORT
  350. DEBUG_MSG_P(PSTR(" V9261F"));
  351. #endif
  352. #endif // SENSOR_SUPPORT
  353. DEBUG_MSG_P(PSTR("\n\n"));
  354. // -------------------------------------------------------------------------
  355. unsigned char reason = resetReason();
  356. if (reason > 0) {
  357. char buffer[32];
  358. strcpy_P(buffer, custom_reset_string[reason-1]);
  359. DEBUG_MSG_P(PSTR("[INIT] Last reset reason: %s\n"), buffer);
  360. } else {
  361. DEBUG_MSG_P(PSTR("[INIT] Last reset reason: %s\n"), (char *) ESP.getResetReason().c_str());
  362. }
  363. DEBUG_MSG_P(PSTR("[INIT] Settings size: %u bytes\n"), settingsSize());
  364. DEBUG_MSG_P(PSTR("[INIT] Free heap: %u bytes\n"), getFreeHeap());
  365. #if ADC_VCC_ENABLED
  366. DEBUG_MSG_P(PSTR("[INIT] Power: %u mV\n"), ESP.getVcc());
  367. #endif
  368. DEBUG_MSG_P(PSTR("[INIT] Power saving delay value: %lu ms\n"), _loopDelay);
  369. #if SYSTEM_CHECK_ENABLED
  370. if (!systemCheck()) DEBUG_MSG_P(PSTR("\n[INIT] Device is in SAFE MODE\n"));
  371. #endif
  372. DEBUG_MSG_P(PSTR("\n"));
  373. }
  374. // -----------------------------------------------------------------------------
  375. // SSL
  376. // -----------------------------------------------------------------------------
  377. #if ASYNC_TCP_SSL_ENABLED
  378. bool sslCheckFingerPrint(const char * fingerprint) {
  379. return (strlen(fingerprint) == 59);
  380. }
  381. bool sslFingerPrintArray(const char * fingerprint, unsigned char * bytearray) {
  382. // check length (20 2-character digits ':' or ' ' separated => 20*2+19 = 59)
  383. if (!sslCheckFingerPrint(fingerprint)) return false;
  384. // walk the fingerprint
  385. for (unsigned int i=0; i<20; i++) {
  386. bytearray[i] = strtol(fingerprint + 3*i, NULL, 16);
  387. }
  388. return true;
  389. }
  390. bool sslFingerPrintChar(const char * fingerprint, char * destination) {
  391. // check length (20 2-character digits ':' or ' ' separated => 20*2+19 = 59)
  392. if (!sslCheckFingerPrint(fingerprint)) return false;
  393. // copy it
  394. strncpy(destination, fingerprint, 59);
  395. // walk the fingerprint replacing ':' for ' '
  396. for (unsigned char i = 0; i<59; i++) {
  397. if (destination[i] == ':') destination[i] = ' ';
  398. }
  399. return true;
  400. }
  401. #endif
  402. // -----------------------------------------------------------------------------
  403. // Reset
  404. // -----------------------------------------------------------------------------
  405. unsigned char resetReason() {
  406. static unsigned char status = 255;
  407. if (status == 255) {
  408. status = EEPROM.read(EEPROM_CUSTOM_RESET);
  409. if (status > 0) resetReason(0);
  410. if (status > CUSTOM_RESET_MAX) status = 0;
  411. }
  412. return status;
  413. }
  414. void resetReason(unsigned char reason) {
  415. EEPROM.write(EEPROM_CUSTOM_RESET, reason);
  416. EEPROM.commit();
  417. }
  418. void reset(unsigned char reason) {
  419. resetReason(reason);
  420. ESP.restart();
  421. }
  422. void deferredReset(unsigned long delay, unsigned char reason) {
  423. _defer_reset.once_ms(delay, reset, reason);
  424. }
  425. // -----------------------------------------------------------------------------
  426. char * ltrim(char * s) {
  427. char *p = s;
  428. while ((unsigned char) *p == ' ') ++p;
  429. return p;
  430. }
  431. double roundTo(double num, unsigned char positions) {
  432. double multiplier = 1;
  433. while (positions-- > 0) multiplier *= 10;
  434. return round(num * multiplier) / multiplier;
  435. }
  436. void nice_delay(unsigned long ms) {
  437. unsigned long start = millis();
  438. while (millis() - start < ms) delay(1);
  439. }