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.

204 lines
5.2 KiB

8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
  1. /*
  2. ESPurna
  3. Copyright (C) 2016 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 <Arduino.h>
  16. #include "config/all.h"
  17. // -----------------------------------------------------------------------------
  18. // PROTOTYPES
  19. // -----------------------------------------------------------------------------
  20. #include <NtpClientLib.h>
  21. #include <ESPAsyncWebServer.h>
  22. #include <AsyncMqttClient.h>
  23. #include "FS.h"
  24. String getSetting(const String& key, String defaultValue = "");
  25. // -----------------------------------------------------------------------------
  26. // METHODS
  27. // -----------------------------------------------------------------------------
  28. String getIdentifier() {
  29. char identifier[20];
  30. sprintf(identifier, "%s_%06X", DEVICE, ESP.getChipId());
  31. return String(identifier);
  32. }
  33. void blink(unsigned long delayOff, unsigned long delayOn) {
  34. static unsigned long next = millis();
  35. static bool status = HIGH;
  36. if (next < millis()) {
  37. status = !status;
  38. digitalWrite(LED_PIN, LED_PIN_INVERSE ? !status : status);
  39. next += ((status) ? delayOff : delayOn);
  40. }
  41. }
  42. void showStatus() {
  43. if (wifiConnected()) {
  44. if (WiFi.getMode() == WIFI_AP) {
  45. blink(2000, 2000);
  46. } else {
  47. blink(5000, 500);
  48. }
  49. } else {
  50. blink(500, 500);
  51. }
  52. }
  53. void hardwareSetup() {
  54. Serial.begin(115200);
  55. pinMode(LED_PIN, OUTPUT);
  56. SPIFFS.begin();
  57. }
  58. void getFSVersion(char * buffer) {
  59. File h = SPIFFS.open(FS_VERSION_FILE, "r");
  60. if (!h) {
  61. DEBUG_MSG("[SPIFFS] Could not open file system version file.\n");
  62. strcpy(buffer, APP_VERSION);
  63. return;
  64. }
  65. size_t size = h.size();
  66. h.readBytes(buffer, size - 1);
  67. h.close();
  68. }
  69. void hardwareLoop() {
  70. showStatus();
  71. // Heartbeat
  72. static unsigned long last_heartbeat = 0;
  73. if (mqttConnected()) {
  74. if ((millis() - last_heartbeat > HEARTBEAT_INTERVAL) || (last_heartbeat == 0)) {
  75. last_heartbeat = millis();
  76. mqttSend((char *) MQTT_HEARTBEAT_TOPIC, (char *) "1");
  77. DEBUG_MSG("[BEAT] Free heap: %d\n", ESP.getFreeHeap());
  78. DEBUG_MSG("[NTP] Time: %s\n", (char *) NTP.getTimeDateString().c_str());
  79. }
  80. }
  81. }
  82. // -----------------------------------------------------------------------------
  83. // BOOTING
  84. // -----------------------------------------------------------------------------
  85. void welcome() {
  86. delay(2000);
  87. Serial.printf("%s %s\n", (char *) APP_NAME, (char *) APP_VERSION);
  88. Serial.printf("%s\n%s\n\n", (char *) APP_AUTHOR, (char *) APP_WEBSITE);
  89. //Serial.printf("Device: %s\n", (char *) getIdentifier().c_str());
  90. Serial.printf("ChipID: %06X\n", ESP.getChipId());
  91. Serial.printf("Last reset reason: %s\n", (char *) ESP.getResetReason().c_str());
  92. Serial.printf("Memory size: %d bytes\n", ESP.getFlashChipSize());
  93. Serial.printf("Free heap: %d bytes\n", ESP.getFreeHeap());
  94. FSInfo fs_info;
  95. if (SPIFFS.info(fs_info)) {
  96. Serial.printf("File system total size: %d bytes\n", fs_info.totalBytes);
  97. Serial.printf(" used size : %d bytes\n", fs_info.usedBytes);
  98. Serial.printf(" block size: %d bytes\n", fs_info.blockSize);
  99. Serial.printf(" page size : %d bytes\n", fs_info.pageSize);
  100. Serial.printf(" max files : %d\n", fs_info.maxOpenFiles);
  101. Serial.printf(" max length: %d\n", fs_info.maxPathLength);
  102. }
  103. Serial.println();
  104. Serial.println();
  105. }
  106. void setup() {
  107. hardwareSetup();
  108. buttonSetup();
  109. welcome();
  110. settingsSetup();
  111. if (getSetting("hostname").length() == 0) {
  112. setSetting("hostname", String() + getIdentifier());
  113. saveSettings();
  114. }
  115. relaySetup();
  116. wifiSetup();
  117. otaSetup();
  118. mqttSetup();
  119. webSetup();
  120. ntpSetup();
  121. #if ENABLE_FAUXMO
  122. fauxmoSetup();
  123. #endif
  124. #if ENABLE_NOFUSS
  125. nofussSetup();
  126. #endif
  127. #if ENABLE_POW
  128. powSetup();
  129. #endif
  130. #if ENABLE_DS18B20
  131. dsSetup();
  132. #endif
  133. #if ENABLE_DHT
  134. dhtSetup();
  135. #endif
  136. #if ENABLE_RF
  137. rfSetup();
  138. #endif
  139. #if ENABLE_EMON
  140. powerMonitorSetup();
  141. #endif
  142. }
  143. void loop() {
  144. hardwareLoop();
  145. buttonLoop();
  146. settingsLoop();
  147. wifiLoop();
  148. otaLoop();
  149. mqttLoop();
  150. ntpLoop();
  151. #if ENABLE_NOFUSS
  152. nofussLoop();
  153. #endif
  154. #if ENABLE_POW
  155. powLoop();
  156. #endif
  157. #if ENABLE_DS18B20
  158. dsLoop();
  159. #endif
  160. #if ENABLE_DHT
  161. dhtLoop();
  162. #endif
  163. #if ENABLE_RF
  164. rfLoop();
  165. #endif
  166. #if ENABLE_EMON
  167. powerMonitorLoop();
  168. #endif
  169. yield();
  170. }