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.

322 lines
7.2 KiB

  1. /*
  2. ESPurna
  3. Copyright (C) 2016-2019 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 "espurna.h"
  16. #include "alexa.h"
  17. #include "api.h"
  18. #include "broker.h"
  19. #include "button.h"
  20. #include "crash.h"
  21. #include "curtain_kingart.h"
  22. #include "debug.h"
  23. #include "domoticz.h"
  24. #include "encoder.h"
  25. #include "homeassistant.h"
  26. #include "i2c.h"
  27. #include "influxdb.h"
  28. #include "ir.h"
  29. #include "led.h"
  30. #include "light.h"
  31. #include "lightfox.h"
  32. #include "llmnr.h"
  33. #include "mdns.h"
  34. #include "mqtt.h"
  35. #include "netbios.h"
  36. #include "nofuss.h"
  37. #include "ntp.h"
  38. #include "ota.h"
  39. #include "relay.h"
  40. #include "rfbridge.h"
  41. #include "rfm69.h"
  42. #include "rpc.h"
  43. #include "rpnrules.h"
  44. #include "rtcmem.h"
  45. #include "scheduler.h"
  46. #include "sensor.h"
  47. #include "ssdp.h"
  48. #include "telnet.h"
  49. #include "thermostat.h"
  50. #include "thingspeak.h"
  51. #include "tuya.h"
  52. #include "uartmqtt.h"
  53. #include "web.h"
  54. #include "ws.h"
  55. std::vector<void_callback_f> _loop_callbacks;
  56. std::vector<void_callback_f> _reload_callbacks;
  57. bool _reload_config = false;
  58. unsigned long _loop_delay = 0;
  59. // -----------------------------------------------------------------------------
  60. // GENERAL CALLBACKS
  61. // -----------------------------------------------------------------------------
  62. void espurnaRegisterLoop(void_callback_f callback) {
  63. _loop_callbacks.push_back(callback);
  64. }
  65. void espurnaRegisterReload(void_callback_f callback) {
  66. _reload_callbacks.push_back(callback);
  67. }
  68. void espurnaReload() {
  69. _reload_config = true;
  70. }
  71. void _espurnaReload() {
  72. for (const auto& callback : _reload_callbacks) {
  73. callback();
  74. }
  75. }
  76. unsigned long espurnaLoopDelay() {
  77. return _loop_delay;
  78. }
  79. // -----------------------------------------------------------------------------
  80. // BOOTING
  81. // -----------------------------------------------------------------------------
  82. void setup() {
  83. // -------------------------------------------------------------------------
  84. // Basic modules, will always run
  85. // -------------------------------------------------------------------------
  86. // Cache initial free heap value
  87. setInitialFreeHeap();
  88. // Init logging module
  89. #if DEBUG_SUPPORT
  90. debugSetup();
  91. #endif
  92. // Init GPIO functions
  93. gpioSetup();
  94. // Init RTCMEM
  95. rtcmemSetup();
  96. // Init EEPROM
  97. eepromSetup();
  98. // Init persistance
  99. settingsSetup();
  100. // Configure logger and crash recorder
  101. #if DEBUG_SUPPORT
  102. debugConfigureBoot();
  103. crashSetup();
  104. #endif
  105. // Return bogus free heap value for broken devices
  106. // XXX: device is likely to trigger other bugs! tread carefuly
  107. wtfHeap(getSetting("wtfHeap", 0));
  108. // Init Serial, SPIFFS and system check
  109. systemSetup();
  110. // Init terminal features
  111. #if TERMINAL_SUPPORT
  112. terminalSetup();
  113. #endif
  114. // Hostname & board name initialization
  115. if (getSetting("hostname").length() == 0) {
  116. setDefaultHostname();
  117. }
  118. setBoardName();
  119. // Show welcome message and system configuration
  120. info(true);
  121. wifiSetup();
  122. #if OTA_ARDUINOOTA_SUPPORT
  123. arduinoOtaSetup();
  124. #endif
  125. #if TELNET_SUPPORT
  126. telnetSetup();
  127. #endif
  128. #if OTA_CLIENT != OTA_CLIENT_NONE
  129. otaClientSetup();
  130. #endif
  131. // -------------------------------------------------------------------------
  132. // Check if system is stable
  133. // -------------------------------------------------------------------------
  134. #if SYSTEM_CHECK_ENABLED
  135. if (!systemCheck()) return;
  136. #endif
  137. // -------------------------------------------------------------------------
  138. // Next modules will be only loaded if system is flagged as stable
  139. // -------------------------------------------------------------------------
  140. // Init webserver required before any module that uses API
  141. #if WEB_SUPPORT
  142. webSetup();
  143. wsSetup();
  144. #if DEBUG_WEB_SUPPORT
  145. debugWebSetup();
  146. #endif
  147. #if OTA_WEB_SUPPORT
  148. otaWebSetup();
  149. #endif
  150. #endif
  151. #if API_SUPPORT
  152. apiSetup();
  153. #endif
  154. // lightSetup must be called before relaySetup
  155. #if LIGHT_PROVIDER != LIGHT_PROVIDER_NONE
  156. lightSetup();
  157. #endif
  158. // rpnSetup must be called before relaySetup
  159. #if RPN_RULES_SUPPORT
  160. rpnSetup();
  161. #endif
  162. #if RELAY_SUPPORT
  163. relaySetup();
  164. #endif
  165. #if BUTTON_SUPPORT
  166. buttonSetup();
  167. #endif
  168. #if ENCODER_SUPPORT && (LIGHT_PROVIDER != LIGHT_PROVIDER_NONE)
  169. encoderSetup();
  170. #endif
  171. #if LED_SUPPORT
  172. ledSetup();
  173. #endif
  174. #if MQTT_SUPPORT
  175. mqttSetup();
  176. #endif
  177. #if MDNS_SERVER_SUPPORT
  178. mdnsServerSetup();
  179. #endif
  180. #if MDNS_CLIENT_SUPPORT
  181. mdnsClientSetup();
  182. #endif
  183. #if LLMNR_SUPPORT
  184. llmnrSetup();
  185. #endif
  186. #if NETBIOS_SUPPORT
  187. netbiosSetup();
  188. #endif
  189. #if SSDP_SUPPORT
  190. ssdpSetup();
  191. #endif
  192. #if NTP_SUPPORT
  193. ntpSetup();
  194. #endif
  195. #if I2C_SUPPORT
  196. i2cSetup();
  197. #endif
  198. #if RF_SUPPORT
  199. rfbSetup();
  200. #endif
  201. #if ALEXA_SUPPORT
  202. alexaSetup();
  203. #endif
  204. #if NOFUSS_SUPPORT
  205. nofussSetup();
  206. #endif
  207. #if SENSOR_SUPPORT
  208. sensorSetup();
  209. #endif
  210. #if INFLUXDB_SUPPORT
  211. idbSetup();
  212. #endif
  213. #if THINGSPEAK_SUPPORT
  214. tspkSetup();
  215. #endif
  216. #if RFM69_SUPPORT
  217. rfm69Setup();
  218. #endif
  219. #if IR_SUPPORT
  220. irSetup();
  221. #endif
  222. #if DOMOTICZ_SUPPORT
  223. domoticzSetup();
  224. #endif
  225. #if HOMEASSISTANT_SUPPORT
  226. haSetup();
  227. #endif
  228. #if SCHEDULER_SUPPORT
  229. schSetup();
  230. #endif
  231. #if UART_MQTT_SUPPORT
  232. uartmqttSetup();
  233. #endif
  234. #ifdef FOXEL_LIGHTFOX_DUAL
  235. lightfoxSetup();
  236. #endif
  237. #if THERMOSTAT_SUPPORT
  238. thermostatSetup();
  239. #endif
  240. #if THERMOSTAT_DISPLAY_SUPPORT
  241. displaySetup();
  242. #endif
  243. #if TUYA_SUPPORT
  244. Tuya::tuyaSetup();
  245. #endif
  246. #if KINGART_CURTAIN_SUPPORT
  247. kingartCurtainSetup();
  248. #endif
  249. // 3rd party code hook
  250. #if USE_EXTRA
  251. extraSetup();
  252. #endif
  253. // Prepare configuration for version 2.0
  254. migrate();
  255. // Set up delay() after loop callbacks are finished
  256. // Note: should be after settingsSetup()
  257. _loop_delay = constrain(
  258. getSetting("loopDelay", LOOP_DELAY_TIME), 0, 300
  259. );
  260. saveSettings();
  261. }
  262. void loop() {
  263. // Reload config before running any callbacks
  264. if (_reload_config) {
  265. _espurnaReload();
  266. _reload_config = false;
  267. }
  268. // Call registered loop callbacks
  269. for (unsigned char i = 0; i < _loop_callbacks.size(); i++) {
  270. (_loop_callbacks[i])();
  271. }
  272. // Power saving delay
  273. if (_loop_delay) delay(_loop_delay);
  274. }