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.

329 lines
11 KiB

8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
7 years ago
8 years ago
8 years ago
8 years ago
7 years ago
7 years ago
8 years ago
8 years ago
  1. //------------------------------------------------------------------------------
  2. // GENERAL
  3. //------------------------------------------------------------------------------
  4. #define SERIAL_BAUDRATE 115200
  5. #define HOSTNAME DEVICE
  6. #define BUFFER_SIZE 1024
  7. #define HEARTBEAT_INTERVAL 300000
  8. #define UPTIME_OVERFLOW 4294967295
  9. //--------------------------------------------------------------------------------
  10. // DEBUG
  11. //--------------------------------------------------------------------------------
  12. #ifndef DEBUG_PORT
  13. #define DEBUG_PORT Serial
  14. #endif
  15. // Uncomment and configure these lines to enable remote debug via udpDebug
  16. // To receive the message son the destination computer use nc:
  17. // nc -ul 8111
  18. //#define DEBUG_UDP_IP IPAddress(192, 168, 1, 100)
  19. //#define DEBUG_UDP_PORT 8111
  20. //--------------------------------------------------------------------------------
  21. // EEPROM
  22. //--------------------------------------------------------------------------------
  23. #define EEPROM_RELAY_STATUS 0
  24. #define EEPROM_ENERGY_COUNT 1
  25. #define EEPROM_CUSTOM_RESET 5
  26. #define EEPROM_DATA_END 6
  27. //--------------------------------------------------------------------------------
  28. // RESET
  29. //--------------------------------------------------------------------------------
  30. #define CUSTOM_RESET_HARDWARE 1
  31. #define CUSTOM_RESET_WEB 2
  32. #define CUSTOM_RESET_TERMINAL 3
  33. #define CUSTOM_RESET_MQTT 4
  34. #define CUSTOM_RESET_RPC 5
  35. #define CUSTOM_RESET_OTA 6
  36. #define CUSTOM_RESET_NOFUSS 8
  37. #define CUSTOM_RESET_UPGRADE 9
  38. #define CUSTOM_RESET_FACTORY 10
  39. #define CUSTOM_RESET_MAX 10
  40. #include <pgmspace.h>
  41. PROGMEM const char custom_reset_hardware[] = "Hardware button";
  42. PROGMEM const char custom_reset_web[] = "Reset from web interface";
  43. PROGMEM const char custom_reset_terminal[] = "Reset from terminal";
  44. PROGMEM const char custom_reset_mqtt[] = "Reset from MQTT";
  45. PROGMEM const char custom_reset_rpc[] = "Reset from RPC";
  46. PROGMEM const char custom_reset_ota[] = "Reset after successful OTA update";
  47. PROGMEM const char custom_reset_nofuss[] = "Reset after successful NoFUSS update";
  48. PROGMEM const char custom_reset_upgrade[] = "Reset after successful web update";
  49. PROGMEM const char custom_reset_factory[] = "Factory reset";
  50. PROGMEM const char* const custom_reset_string[] = {
  51. custom_reset_hardware, custom_reset_web, custom_reset_terminal,
  52. custom_reset_mqtt, custom_reset_rpc, custom_reset_ota,
  53. custom_reset_nofuss, custom_reset_upgrade, custom_reset_factory
  54. };
  55. //--------------------------------------------------------------------------------
  56. // BUTTON
  57. //--------------------------------------------------------------------------------
  58. #define BUTTON_LNGCLICK_LENGTH 1000
  59. #define BUTTON_LNGLNGCLICK_LENGTH 10000
  60. #define BUTTON_EVENT_NONE 0
  61. #define BUTTON_EVENT_PRESSED 1
  62. #define BUTTON_EVENT_CLICK 2
  63. #define BUTTON_EVENT_DBLCLICK 3
  64. #define BUTTON_EVENT_LNGCLICK 4
  65. #define BUTTON_EVENT_LNGLNGCLICK 5
  66. #define BUTTON_MODE_NONE 0
  67. #define BUTTON_MODE_TOGGLE 1
  68. #define BUTTON_MODE_AP 2
  69. #define BUTTON_MODE_RESET 3
  70. #define BUTTON_MODE_PULSE 4
  71. #define BUTTON_MODE_FACTORY 5
  72. #define BUTTON_DEFAULT_MODE BUTTON_MODE_TOGGLE
  73. //--------------------------------------------------------------------------------
  74. // RELAY
  75. //--------------------------------------------------------------------------------
  76. #define RELAY_MODE_OFF 0
  77. #define RELAY_MODE_ON 1
  78. #define RELAY_MODE_SAME 2
  79. #define RELAY_MODE_TOOGLE 3
  80. #define RELAY_SYNC_ANY 0
  81. #define RELAY_SYNC_NONE_OR_ONE 1
  82. #define RELAY_SYNC_ONE 2
  83. #define RELAY_SYNC_SAME 3
  84. #define RELAY_PULSE_NONE 0
  85. #define RELAY_PULSE_OFF 1
  86. #define RELAY_PULSE_ON 2
  87. #define RELAY_PROVIDER_RELAY 0
  88. #define RELAY_PROVIDER_DUAL 1
  89. #define RELAY_PROVIDER_LIGHT 2
  90. // Pulse time in milliseconds
  91. #define RELAY_PULSE_TIME 1.0
  92. // 0 means OFF, 1 ON and 2 whatever was before
  93. #define RELAY_MODE RELAY_MODE_OFF
  94. // 0 means ANY, 1 zero or one and 2 one and only one
  95. #define RELAY_SYNC RELAY_SYNC_ANY
  96. // 0 means no pulses, 1 means normally off, 2 normally on
  97. #define RELAY_PULSE_MODE RELAY_PULSE_NONE
  98. // Relay requests flood protection window - in seconds
  99. #define RELAY_FLOOD_WINDOW 3
  100. // Allowed actual relay changes inside requests flood protection window
  101. #define RELAY_FLOOD_CHANGES 5
  102. //--------------------------------------------------------------------------------
  103. // I18N
  104. //--------------------------------------------------------------------------------
  105. #define TMP_CELSIUS 0
  106. #define TMP_FAHRENHEIT 1
  107. #define TMP_UNITS TMP_CELSIUS
  108. //--------------------------------------------------------------------------------
  109. // LED
  110. //--------------------------------------------------------------------------------
  111. // All defined LEDs in the board can be managed through MQTT
  112. // except the first one when LED_AUTO is set to 1.
  113. // If LED_AUTO is set to 1 the board will use first defined LED to show wifi status.
  114. #define LED_AUTO 1
  115. // -----------------------------------------------------------------------------
  116. // WIFI & WEB
  117. // -----------------------------------------------------------------------------
  118. #define WIFI_RECONNECT_INTERVAL 120000
  119. #define WIFI_MAX_NETWORKS 5
  120. #define ADMIN_PASS "fibonacci"
  121. #define FORCE_CHANGE_PASS 1
  122. #define HTTP_USERNAME "admin"
  123. #define WS_BUFFER_SIZE 5
  124. #define WS_TIMEOUT 1800000
  125. #define WEBSERVER_PORT 80
  126. #define DNS_PORT 53
  127. #define ENABLE_MDNS 1
  128. #define WEB_MODE_NORMAL 0
  129. #define WEB_MODE_PASSWORD 1
  130. #define AP_MODE AP_MODE_ALONE
  131. // This option builds the firmware with the web interface embedded.
  132. // You first have to build the data.h file that holds the contents
  133. // of the web interface by running "gulp buildfs_embed"
  134. #ifndef EMBEDDED_WEB
  135. #define EMBEDDED_WEB 1
  136. #endif
  137. // -----------------------------------------------------------------------------
  138. // OTA & NOFUSS
  139. // -----------------------------------------------------------------------------
  140. #define OTA_PORT 8266
  141. #define NOFUSS_SERVER ""
  142. #define NOFUSS_INTERVAL 3600000
  143. // -----------------------------------------------------------------------------
  144. // MQTT
  145. // -----------------------------------------------------------------------------
  146. #ifndef MQTT_USE_ASYNC
  147. #define MQTT_USE_ASYNC 1
  148. #endif
  149. #define MQTT_SERVER ""
  150. #define MQTT_PORT 1883
  151. #define MQTT_TOPIC "/test/switch/{identifier}"
  152. #define MQTT_RETAIN true
  153. #define MQTT_QOS 0
  154. #define MQTT_KEEPALIVE 30
  155. #define MQTT_RECONNECT_DELAY 10000
  156. #define MQTT_TRY_INTERVAL 30000
  157. #define MQTT_MAX_TRIES 12
  158. #define MQTT_SKIP_RETAINED 1
  159. #define MQTT_SKIP_TIME 1000
  160. #define MQTT_TOPIC_ACTION "action"
  161. #define MQTT_TOPIC_RELAY "relay"
  162. #define MQTT_TOPIC_LED "led"
  163. #define MQTT_TOPIC_COLOR "color"
  164. #define MQTT_TOPIC_BUTTON "button"
  165. #define MQTT_TOPIC_IP "ip"
  166. #define MQTT_TOPIC_VERSION "version"
  167. #define MQTT_TOPIC_UPTIME "uptime"
  168. #define MQTT_TOPIC_FREEHEAP "freeheap"
  169. #define MQTT_TOPIC_VCC "vcc"
  170. #define MQTT_TOPIC_STATUS "status"
  171. #define MQTT_TOPIC_MAC "mac"
  172. #define MQTT_TOPIC_RSSI "rssi"
  173. #define MQTT_TOPIC_APP "app"
  174. #define MQTT_TOPIC_INTERVAL "interval"
  175. #define MQTT_TOPIC_HOSTNAME "hostname"
  176. #define MQTT_TOPIC_ANALOG "analog"
  177. // Periodic reports
  178. #define MQTT_REPORT_STATUS 1
  179. #define MQTT_REPORT_IP 1
  180. #define MQTT_REPORT_MAC 1
  181. #define MQTT_REPORT_RSSI 1
  182. #define MQTT_REPORT_UPTIME 1
  183. #define MQTT_REPORT_FREEHEAP 1
  184. #define MQTT_REPORT_VCC 1
  185. #define MQTT_REPORT_RELAY 1
  186. #define MQTT_REPORT_COLOR 1
  187. #define MQTT_REPORT_HOSTNAME 1
  188. #define MQTT_REPORT_APP 1
  189. #define MQTT_REPORT_VERSION 1
  190. #define MQTT_REPORT_INTERVAL 0
  191. #define MQTT_STATUS_ONLINE "1"
  192. #define MQTT_STATUS_OFFLINE "0"
  193. #define MQTT_ACTION_RESET "reset"
  194. #define MQTT_CONNECT_EVENT 0
  195. #define MQTT_DISCONNECT_EVENT 1
  196. #define MQTT_MESSAGE_EVENT 2
  197. // Custom get and set postfixes6+
  198. // Use something like "/status" or "/set", with leading slash
  199. #define MQTT_USE_GETTER ""
  200. #define MQTT_USE_SETTER ""
  201. // -----------------------------------------------------------------------------
  202. // I2C
  203. // -----------------------------------------------------------------------------
  204. #define ENABLE_I2C 0
  205. #define I2C_SDA_PIN 4
  206. #define I2C_SCL_PIN 14
  207. #define I2C_CLOCK_STRETCH_TIME 200
  208. #define I2C_SCL_FREQUENCY 1000
  209. // -----------------------------------------------------------------------------
  210. // LIGHT
  211. // -----------------------------------------------------------------------------
  212. #define ENABLE_GAMMA_CORRECTION 0
  213. #define LIGHT_PROVIDER_NONE 0
  214. #define LIGHT_PROVIDER_WS2812 1
  215. #define LIGHT_PROVIDER_RGB 2
  216. #define LIGHT_PROVIDER_RGBW 3
  217. #define LIGHT_PROVIDER_MY9192 4
  218. #define LIGHT_PROVIDER_RGB2W 5
  219. #define LIGHT_DEFAULT_COLOR "#000080"
  220. #define LIGHT_SAVE_DELAY 5
  221. #define LIGHT_MAX_VALUE 255
  222. #define MY9291_DI_PIN 13
  223. #define MY9291_DCKI_PIN 15
  224. #define MY9291_COMMAND MY9291_COMMAND_DEFAULT
  225. // Shared settings between RGB and RGBW lights
  226. #define RGBW_INVERSE_LOGIC 1
  227. #define RGBW_RED_PIN 14
  228. #define RGBW_GREEN_PIN 5
  229. #define RGBW_BLUE_PIN 12
  230. #define RGBW_WHITE_PIN 13
  231. // -----------------------------------------------------------------------------
  232. // DOMOTICZ
  233. // -----------------------------------------------------------------------------
  234. #ifndef ENABLE_DOMOTICZ
  235. #define ENABLE_DOMOTICZ 1
  236. #endif
  237. #define DOMOTICZ_IN_TOPIC "domoticz/in"
  238. #define DOMOTICZ_OUT_TOPIC "domoticz/out"
  239. // -----------------------------------------------------------------------------
  240. // INFLUXDB
  241. // -----------------------------------------------------------------------------
  242. #ifndef ENABLE_INFLUXDB
  243. #define ENABLE_INFLUXDB 1
  244. #endif
  245. #define INFLUXDB_PORT 8086
  246. // -----------------------------------------------------------------------------
  247. // NTP
  248. // -----------------------------------------------------------------------------
  249. #define NTP_SERVER "pool.ntp.org"
  250. #define NTP_TIME_OFFSET 1
  251. #define NTP_DAY_LIGHT true
  252. #define NTP_UPDATE_INTERVAL 1800
  253. // -----------------------------------------------------------------------------
  254. // FAUXMO
  255. // -----------------------------------------------------------------------------
  256. // This setting defines whether Alexa support should be built into the firmware
  257. #ifndef ENABLE_FAUXMO
  258. #define ENABLE_FAUXMO 1
  259. #endif
  260. // This is default value for the fauxmoEnabled setting that defines whether
  261. // this device should be discoberable and respond to Alexa commands.
  262. // Both ENABLE_FAUXMO and fauxmoEnabled should be 1 for Alexa support to work.
  263. #define FAUXMO_ENABLED 1