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.

192 lines
4.4 KiB

6 years ago
6 years ago
8 years ago
6 years ago
8 years ago
6 years ago
7 years ago
6 years ago
6 years ago
6 years ago
6 years ago
8 years ago
6 years ago
8 years ago
6 years ago
6 years ago
6 years ago
  1. /*
  2. ESPurna
  3. Copyright (C) 2016-2018 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 <vector>
  17. std::vector<void (*)()> _loop_callbacks;
  18. // -----------------------------------------------------------------------------
  19. // REGISTER
  20. // -----------------------------------------------------------------------------
  21. void espurnaRegisterLoop(void (*callback)()) {
  22. _loop_callbacks.push_back(callback);
  23. }
  24. // -----------------------------------------------------------------------------
  25. // BOOTING
  26. // -----------------------------------------------------------------------------
  27. void setup() {
  28. // -------------------------------------------------------------------------
  29. // Basic modules, will always run
  30. // -------------------------------------------------------------------------
  31. // Serial debug
  32. #if DEBUG_SUPPORT
  33. debugSetup();
  34. #endif
  35. // Init EEPROM
  36. eepromSetup();
  37. // Init Serial, SPIFFS and system check
  38. systemSetup();
  39. // Init persistance and terminal features
  40. settingsSetup();
  41. // Hostname & board name initialization
  42. if (getSetting("hostname").length() == 0) {
  43. setDefaultHostname();
  44. }
  45. setBoardName();
  46. // Show welcome message and system configuration
  47. info();
  48. wifiSetup();
  49. otaSetup();
  50. #if TELNET_SUPPORT
  51. telnetSetup();
  52. #endif
  53. // -------------------------------------------------------------------------
  54. // Check if system is stable
  55. // -------------------------------------------------------------------------
  56. #if SYSTEM_CHECK_ENABLED
  57. if (!systemCheck()) return;
  58. #endif
  59. // -------------------------------------------------------------------------
  60. // Next modules will be only loaded if system is flagged as stable
  61. // -------------------------------------------------------------------------
  62. // Init webserver required before any module that uses API
  63. #if WEB_SUPPORT
  64. webSetup();
  65. wsSetup();
  66. apiSetup();
  67. #if DEBUG_WEB_SUPPORT
  68. debugWebSetup();
  69. #endif
  70. #endif
  71. // lightSetup must be called before relaySetup
  72. #if LIGHT_PROVIDER != LIGHT_PROVIDER_NONE
  73. lightSetup();
  74. #endif
  75. relaySetup();
  76. #if BUTTON_SUPPORT
  77. buttonSetup();
  78. #endif
  79. #if LED_SUPPORT
  80. ledSetup();
  81. #endif
  82. #if MQTT_SUPPORT
  83. mqttSetup();
  84. #endif
  85. #if MDNS_SERVER_SUPPORT
  86. mdnsServerSetup();
  87. #endif
  88. #if MDNS_CLIENT_SUPPORT
  89. mdnsClientSetup();
  90. #endif
  91. #if LLMNR_SUPPORT
  92. llmnrSetup();
  93. #endif
  94. #if NETBIOS_SUPPORT
  95. netbiosSetup();
  96. #endif
  97. #if SSDP_SUPPORT
  98. ssdpSetup();
  99. #endif
  100. #if NTP_SUPPORT
  101. ntpSetup();
  102. #endif
  103. #if I2C_SUPPORT
  104. i2cSetup();
  105. #endif
  106. #ifdef ITEAD_SONOFF_RFBRIDGE
  107. rfbSetup();
  108. #endif
  109. #if ALEXA_SUPPORT
  110. alexaSetup();
  111. #endif
  112. #if NOFUSS_SUPPORT
  113. nofussSetup();
  114. #endif
  115. #if INFLUXDB_SUPPORT
  116. idbSetup();
  117. #endif
  118. #if THINGSPEAK_SUPPORT
  119. tspkSetup();
  120. #endif
  121. #if RFM69_SUPPORT
  122. rfm69Setup();
  123. #endif
  124. #if RF_SUPPORT
  125. rfSetup();
  126. #endif
  127. #if IR_SUPPORT
  128. irSetup();
  129. #endif
  130. #if DOMOTICZ_SUPPORT
  131. domoticzSetup();
  132. #endif
  133. #if HOMEASSISTANT_SUPPORT
  134. haSetup();
  135. #endif
  136. #if SENSOR_SUPPORT
  137. sensorSetup();
  138. #endif
  139. #if SCHEDULER_SUPPORT
  140. schSetup();
  141. #endif
  142. #if UART_MQTT_SUPPORT
  143. uartmqttSetup();
  144. #endif
  145. // 3rd party code hook
  146. #if USE_EXTRA
  147. extraSetup();
  148. #endif
  149. // Prepare configuration for version 2.0
  150. migrate();
  151. saveSettings();
  152. }
  153. void loop() {
  154. // Call registered loop callbacks
  155. for (unsigned char i = 0; i < _loop_callbacks.size(); i++) {
  156. (_loop_callbacks[i])();
  157. }
  158. }