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.

1009 lines
39 KiB

7 years ago
7 years ago
7 years ago
8 years ago
8 years ago
7 years ago
7 years ago
7 years ago
6 years ago
8 years ago
8 years ago
6 years ago
6 years ago
8 years ago
8 years ago
6 years ago
6 years ago
8 years ago
8 years ago
6 years ago
6 years ago
  1. //------------------------------------------------------------------------------
  2. // Do not change this file unless you know what you are doing
  3. // Configuration settings are in the settings.h file
  4. //------------------------------------------------------------------------------
  5. //------------------------------------------------------------------------------
  6. // GENERAL
  7. //------------------------------------------------------------------------------
  8. #define DEVICE_NAME MANUFACTURER "_" DEVICE // Concatenate both to get a unique device name
  9. #define ADMIN_PASS "fibonacci" // Default password (WEB, OTA, WIFI)
  10. #define USE_PASSWORD 1 // Insecurity caution! Disabling this will disable password querying completely.
  11. #define LOOP_DELAY_TIME 10 // Delay for this millis in the main loop [0-250]
  12. #define ARRAYINIT(type, name, ...) \
  13. type name[] = {__VA_ARGS__};
  14. //------------------------------------------------------------------------------
  15. // TELNET
  16. //------------------------------------------------------------------------------
  17. #ifndef TELNET_SUPPORT
  18. #define TELNET_SUPPORT 1 // Enable telnet support by default (3.34Kb)
  19. #endif
  20. #ifndef TELNET_STA
  21. #define TELNET_STA 0 // By default, disallow connections via STA interface
  22. #endif
  23. #define TELNET_PORT 23 // Port to listen to telnet clients
  24. #define TELNET_MAX_CLIENTS 1 // Max number of concurrent telnet clients
  25. //------------------------------------------------------------------------------
  26. // DEBUG
  27. //------------------------------------------------------------------------------
  28. // Serial debug log
  29. #ifndef DEBUG_SERIAL_SUPPORT
  30. #define DEBUG_SERIAL_SUPPORT 1 // Enable serial debug log
  31. #endif
  32. #ifndef DEBUG_PORT
  33. #define DEBUG_PORT Serial // Default debugging port
  34. #endif
  35. #ifndef SERIAL_BAUDRATE
  36. #define SERIAL_BAUDRATE 115200 // Default baudrate
  37. #endif
  38. #ifndef DEBUG_ADD_TIMESTAMP
  39. #define DEBUG_ADD_TIMESTAMP 1 // Add timestamp to debug messages
  40. // (in millis overflowing every 1000 seconds)
  41. #endif
  42. // Second serial port (used for RX)
  43. #ifndef SERIAL_RX_ENABLED
  44. #define SERIAL_RX_ENABLED 0 // Secondary serial port for RX
  45. #endif
  46. #ifndef SERIAL_RX_PORT
  47. #define SERIAL_RX_PORT Serial // This setting is usually defined
  48. // in the hardware.h file for those
  49. // boards that require it
  50. #endif
  51. #ifndef SERIAL_RX_BAUDRATE
  52. #define SERIAL_RX_BAUDRATE 115200 // Default baudrate
  53. #endif
  54. //------------------------------------------------------------------------------
  55. // UDP debug log
  56. // To receive the message son the destination computer use nc:
  57. // nc -ul 8113
  58. #ifndef DEBUG_UDP_SUPPORT
  59. #define DEBUG_UDP_SUPPORT 0 // Enable UDP debug log
  60. #endif
  61. #define DEBUG_UDP_IP IPAddress(192, 168, 1, 100)
  62. #define DEBUG_UDP_PORT 8113
  63. //------------------------------------------------------------------------------
  64. #ifndef DEBUG_TELNET_SUPPORT
  65. #define DEBUG_TELNET_SUPPORT TELNET_SUPPORT // Enable telnet debug log if telnet is enabled too
  66. #endif
  67. #if DEBUG_TELNET_SUPPORT
  68. #undef TELNET_SUPPORT
  69. #define TELNET_SUPPORT 1
  70. #endif
  71. //------------------------------------------------------------------------------
  72. // General debug options and macros
  73. #define DEBUG_SUPPORT DEBUG_SERIAL_SUPPORT || DEBUG_UDP_SUPPORT || DEBUG_TELNET_SUPPORT
  74. #if DEBUG_SUPPORT
  75. #define DEBUG_MSG(...) debugSend(__VA_ARGS__)
  76. #define DEBUG_MSG_P(...) debugSend_P(__VA_ARGS__)
  77. #endif
  78. #ifndef DEBUG_MSG
  79. #define DEBUG_MSG(...)
  80. #define DEBUG_MSG_P(...)
  81. #endif
  82. //------------------------------------------------------------------------------
  83. // TERMINAL
  84. //------------------------------------------------------------------------------
  85. #ifndef TERMINAL_SUPPORT
  86. #define TERMINAL_SUPPORT 1 // Enable terminal commands (0.97Kb)
  87. #endif
  88. #define TERMINAL_BUFFER_SIZE 128 // Max size for commands commands
  89. //------------------------------------------------------------------------------
  90. // SYSTEM CHECK
  91. //------------------------------------------------------------------------------
  92. #ifndef SYSTEM_CHECK_ENABLED
  93. #define SYSTEM_CHECK_ENABLED 1 // Enable crash check by default
  94. #endif
  95. #define SYSTEM_CHECK_TIME 60000 // The system is considered stable after these many millis
  96. #define SYSTEM_CHECK_MAX 5 // After this many crashes on boot
  97. // the system is flagged as unstable
  98. //------------------------------------------------------------------------------
  99. // EEPROM
  100. //------------------------------------------------------------------------------
  101. #define EEPROM_SIZE 4096 // EEPROM size in bytes
  102. #define EEPROM_RELAY_STATUS 0 // Address for the relay status (1 byte)
  103. #define EEPROM_ENERGY_COUNT 1 // Address for the energy counter (4 bytes)
  104. #define EEPROM_CUSTOM_RESET 5 // Address for the reset reason (1 byte)
  105. #define EEPROM_CRASH_COUNTER 6 // Address for the crash counter (1 byte)
  106. #define EEPROM_MESSAGE_ID 7 // Address for the MQTT message id (4 bytes)
  107. #define EEPROM_DATA_END 11 // End of custom EEPROM data block
  108. //------------------------------------------------------------------------------
  109. // HEARTBEAT
  110. //------------------------------------------------------------------------------
  111. #ifndef HEARTBEAT_ENABLED
  112. #define HEARTBEAT_ENABLED 1
  113. #endif
  114. #define HEARTBEAT_INTERVAL 300000 // Interval between heartbeat messages (in ms)
  115. #define UPTIME_OVERFLOW 4294967295 // Uptime overflow value
  116. // Topics that will be reported in heartbeat
  117. #define HEARTBEAT_REPORT_STATUS 1
  118. #define HEARTBEAT_REPORT_IP 1
  119. #define HEARTBEAT_REPORT_MAC 1
  120. #define HEARTBEAT_REPORT_RSSI 1
  121. #define HEARTBEAT_REPORT_UPTIME 1
  122. #define HEARTBEAT_REPORT_DATETIME 1
  123. #define HEARTBEAT_REPORT_FREEHEAP 1
  124. #define HEARTBEAT_REPORT_VCC 1
  125. #define HEARTBEAT_REPORT_RELAY 1
  126. #define HEARTBEAT_REPORT_LIGHT 1
  127. #define HEARTBEAT_REPORT_HOSTNAME 1
  128. #define HEARTBEAT_REPORT_APP 1
  129. #define HEARTBEAT_REPORT_VERSION 1
  130. #define HEARTBEAT_REPORT_INTERVAL 0
  131. //------------------------------------------------------------------------------
  132. // RESET
  133. //------------------------------------------------------------------------------
  134. #define CUSTOM_RESET_HARDWARE 1 // Reset from hardware button
  135. #define CUSTOM_RESET_WEB 2 // Reset from web interface
  136. #define CUSTOM_RESET_TERMINAL 3 // Reset from terminal
  137. #define CUSTOM_RESET_MQTT 4 // Reset via MQTT
  138. #define CUSTOM_RESET_RPC 5 // Reset via RPC (HTTP)
  139. #define CUSTOM_RESET_OTA 6 // Reset after successful OTA update
  140. #define CUSTOM_RESET_HTTP 7 // Reset via HTTP GET
  141. #define CUSTOM_RESET_NOFUSS 8 // Reset after successful NOFUSS update
  142. #define CUSTOM_RESET_UPGRADE 9 // Reset after update from web interface
  143. #define CUSTOM_RESET_FACTORY 10 // Factory reset from terminal
  144. #define CUSTOM_RESET_MAX 10
  145. PROGMEM const char custom_reset_hardware[] = "Hardware button";
  146. PROGMEM const char custom_reset_web[] = "Reboot from web interface";
  147. PROGMEM const char custom_reset_terminal[] = "Reboot from terminal";
  148. PROGMEM const char custom_reset_mqtt[] = "Reboot from MQTT";
  149. PROGMEM const char custom_reset_rpc[] = "Reboot from RPC";
  150. PROGMEM const char custom_reset_ota[] = "Reboot after successful OTA update";
  151. PROGMEM const char custom_reset_http[] = "Reboot from HTTP";
  152. PROGMEM const char custom_reset_nofuss[] = "Reboot after successful NoFUSS update";
  153. PROGMEM const char custom_reset_upgrade[] = "Reboot after successful web update";
  154. PROGMEM const char custom_reset_factory[] = "Factory reset";
  155. PROGMEM const char* const custom_reset_string[] = {
  156. custom_reset_hardware, custom_reset_web, custom_reset_terminal,
  157. custom_reset_mqtt, custom_reset_rpc, custom_reset_ota,
  158. custom_reset_http, custom_reset_nofuss, custom_reset_upgrade,
  159. custom_reset_factory
  160. };
  161. //------------------------------------------------------------------------------
  162. // BUTTON
  163. //------------------------------------------------------------------------------
  164. #ifndef BUTTON_DEBOUNCE_DELAY
  165. #define BUTTON_DEBOUNCE_DELAY 50 // Debounce delay (ms)
  166. #endif
  167. #ifndef BUTTON_DBLCLICK_DELAY
  168. #define BUTTON_DBLCLICK_DELAY 500 // Time in ms to wait for a second (or third...) click
  169. #endif
  170. #ifndef BUTTON_LNGCLICK_DELAY
  171. #define BUTTON_LNGCLICK_DELAY 1000 // Time in ms holding the button down to get a long click
  172. #endif
  173. #ifndef BUTTON_LNGLNGCLICK_DELAY
  174. #define BUTTON_LNGLNGCLICK_DELAY 10000 // Time in ms holding the button down to get a long-long click
  175. #endif
  176. #define BUTTON_EVENT_NONE 0
  177. #define BUTTON_EVENT_PRESSED 1
  178. #define BUTTON_EVENT_RELEASED 2
  179. #define BUTTON_EVENT_CLICK 2
  180. #define BUTTON_EVENT_DBLCLICK 3
  181. #define BUTTON_EVENT_LNGCLICK 4
  182. #define BUTTON_EVENT_LNGLNGCLICK 5
  183. #define BUTTON_MODE_NONE 0
  184. #define BUTTON_MODE_TOGGLE 1
  185. #define BUTTON_MODE_ON 2
  186. #define BUTTON_MODE_OFF 3
  187. #define BUTTON_MODE_AP 4
  188. #define BUTTON_MODE_RESET 5
  189. #define BUTTON_MODE_PULSE 6
  190. #define BUTTON_MODE_FACTORY 7
  191. //------------------------------------------------------------------------------
  192. // RELAY
  193. //------------------------------------------------------------------------------
  194. #define RELAY_BOOT_OFF 0
  195. #define RELAY_BOOT_ON 1
  196. #define RELAY_BOOT_SAME 2
  197. #define RELAY_BOOT_TOGGLE 3
  198. #define RELAY_TYPE_NORMAL 0
  199. #define RELAY_TYPE_INVERSE 1
  200. #define RELAY_TYPE_LATCHED 2
  201. #define RELAY_SYNC_ANY 0
  202. #define RELAY_SYNC_NONE_OR_ONE 1
  203. #define RELAY_SYNC_ONE 2
  204. #define RELAY_SYNC_SAME 3
  205. #define RELAY_PULSE_NONE 0
  206. #define RELAY_PULSE_OFF 1
  207. #define RELAY_PULSE_ON 2
  208. #define RELAY_PROVIDER_RELAY 0
  209. #define RELAY_PROVIDER_DUAL 1
  210. #define RELAY_PROVIDER_LIGHT 2
  211. #define RELAY_PROVIDER_RFBRIDGE 3
  212. #define RELAY_PROVIDER_STM 4
  213. // Default boot mode: 0 means OFF, 1 ON and 2 whatever was before
  214. #define RELAY_BOOT_MODE RELAY_BOOT_OFF
  215. // 0 means ANY, 1 zero or one and 2 one and only one
  216. #define RELAY_SYNC RELAY_SYNC_ANY
  217. // Default pulse mode: 0 means no pulses, 1 means normally off, 2 normally on
  218. #define RELAY_PULSE_MODE RELAY_PULSE_NONE
  219. // Default pulse time in seconds
  220. #define RELAY_PULSE_TIME 1.0
  221. // Relay requests flood protection window - in seconds
  222. #define RELAY_FLOOD_WINDOW 3
  223. // Allowed actual relay changes inside requests flood protection window
  224. #define RELAY_FLOOD_CHANGES 5
  225. // Pulse with in milliseconds for a latched relay
  226. #define RELAY_LATCHING_PULSE 10
  227. // Do not save relay state after these many milliseconds
  228. #define RELAY_SAVE_DELAY 1000
  229. //------------------------------------------------------------------------------
  230. // LED
  231. //------------------------------------------------------------------------------
  232. #define LED_MODE_MQTT 0 // LED will be managed from MQTT (OFF by default)
  233. #define LED_MODE_WIFI 1 // LED will blink according to the WIFI status
  234. #define LED_MODE_FOLLOW 2 // LED will follow state of linked relay (check RELAY#_LED)
  235. #define LED_MODE_FOLLOW_INVERSE 3 // LED will follow the opposite state of linked relay (check RELAY#_LED)
  236. #define LED_MODE_FINDME 4 // LED will be ON if all relays are OFF
  237. #define LED_MODE_FINDME_WIFI 5 // A mixture between WIFI and FINDME
  238. #define LED_MODE_ON 6 // LED always ON
  239. #define LED_MODE_OFF 7 // LED always OFF
  240. #define LED_MODE_RELAY 8 // If any relay is ON, LED will be ON, otherwise OFF
  241. #define LED_MODE_RELAY_WIFI 9 // A mixture between WIFI and RELAY, the reverse of MIXED
  242. // -----------------------------------------------------------------------------
  243. // WIFI
  244. // -----------------------------------------------------------------------------
  245. #define WIFI_CONNECT_TIMEOUT 60000 // Connecting timeout for WIFI in ms
  246. #define WIFI_RECONNECT_INTERVAL 180000 // If could not connect to WIFI, retry after this time in ms
  247. #define WIFI_MAX_NETWORKS 5 // Max number of WIFI connection configurations
  248. #define WIFI_AP_MODE AP_MODE_ALONE
  249. #define WIFI_SLEEP_ENABLED 1 // Enable WiFi light sleep
  250. #define WIFI_SCAN_NETWORKS 1 // Perform a network scan before connecting
  251. // Optional hardcoded configuration (up to 2 networks)
  252. #ifndef WIFI1_SSID
  253. #define WIFI1_SSID ""
  254. #endif
  255. #ifndef WIFI1_PASS
  256. #define WIFI1_PASS ""
  257. #endif
  258. #ifndef WIFI1_IP
  259. #define WIFI1_IP ""
  260. #endif
  261. #ifndef WIFI1_GW
  262. #define WIFI1_GW ""
  263. #endif
  264. #ifndef WIFI1_MASK
  265. #define WIFI1_MASK ""
  266. #endif
  267. #ifndef WIFI1_DNS
  268. #define WIFI1_DNS ""
  269. #endif
  270. #ifndef WIFI2_SSID
  271. #define WIFI2_SSID ""
  272. #endif
  273. #ifndef WIFI2_PASS
  274. #define WIFI2_PASS ""
  275. #endif
  276. #ifndef WIFI2_IP
  277. #define WIFI2_IP ""
  278. #endif
  279. #ifndef WIFI2_GW
  280. #define WIFI2_GW ""
  281. #endif
  282. #ifndef WIFI2_MASK
  283. #define WIFI2_MASK ""
  284. #endif
  285. #ifndef WIFI2_DNS
  286. #define WIFI2_DNS ""
  287. #endif
  288. #define WIFI_RSSI_1M -30 // Calibrate it with your router reading the RSSI at 1m
  289. #define WIFI_PROPAGATION_CONST 4 // This is typically something between 2.7 to 4.3 (free space is 2)
  290. // -----------------------------------------------------------------------------
  291. // WEB
  292. // -----------------------------------------------------------------------------
  293. #ifndef WEB_SUPPORT
  294. #define WEB_SUPPORT 1 // Enable web support (http, api, 121.65Kb)
  295. #endif
  296. #ifndef WEB_EMBEDDED
  297. #define WEB_EMBEDDED 1 // Build the firmware with the web interface embedded in
  298. #endif
  299. // This is not working at the moment!!
  300. // Requires ASYNC_TCP_SSL_ENABLED to 1 and ESP8266 Arduino Core 2.4.0
  301. #define WEB_SSL_ENABLED 0 // Use HTTPS web interface
  302. #define WEB_MODE_NORMAL 0
  303. #define WEB_MODE_PASSWORD 1
  304. #define WEB_USERNAME "admin" // HTTP username
  305. #define WEB_FORCE_PASS_CHANGE 1 // Force the user to change the password if default one
  306. #define WEB_PORT 80 // HTTP port
  307. // -----------------------------------------------------------------------------
  308. // WEBSOCKETS
  309. // -----------------------------------------------------------------------------
  310. // This will only be enabled if WEB_SUPPORT is 1 (this is the default value)
  311. #define WS_AUTHENTICATION 1 // WS authentication ON by default (see #507)
  312. #define WS_BUFFER_SIZE 5 // Max number of secured websocket connections
  313. #define WS_TIMEOUT 1800000 // Timeout for secured websocket
  314. #define WS_UPDATE_INTERVAL 30000 // Update clients every 30 seconds
  315. // -----------------------------------------------------------------------------
  316. // API
  317. // -----------------------------------------------------------------------------
  318. // This will only be enabled if WEB_SUPPORT is 1 (this is the default value)
  319. #define API_ENABLED 0 // Do not enable API by default
  320. #define API_BUFFER_SIZE 15 // Size of the buffer for HTTP GET API responses
  321. #define API_REAL_TIME_VALUES 0 // Show filtered/median values by default (0 => median, 1 => real time)
  322. // -----------------------------------------------------------------------------
  323. // UI
  324. // -----------------------------------------------------------------------------
  325. #define UI_TAG_INPUT 0
  326. #define UI_TAG_CHECKBOX 1
  327. #define UI_TAG_SELECT 2
  328. // -----------------------------------------------------------------------------
  329. // MDNS / LLMNR / NETBIOS / SSDP
  330. // -----------------------------------------------------------------------------
  331. #ifndef MDNS_SERVER_SUPPORT
  332. #define MDNS_SERVER_SUPPORT 1 // Publish services using mDNS by default (1.48Kb)
  333. #endif
  334. #ifndef MDNS_CLIENT_SUPPORT
  335. #define MDNS_CLIENT_SUPPORT 0 // Resolve mDNS names (3.44Kb)
  336. #endif
  337. #ifndef LLMNR_SUPPORT
  338. #define LLMNR_SUPPORT 0 // Publish device using LLMNR protocol by default (1.95Kb) - requires 2.4.0
  339. #endif
  340. #ifndef NETBIOS_SUPPORT
  341. #define NETBIOS_SUPPORT 0 // Publish device using NetBIOS protocol by default (1.26Kb) - requires 2.4.0
  342. #endif
  343. #ifndef SSDP_SUPPORT
  344. #define SSDP_SUPPORT 0 // Publish device using SSDP protocol by default (4.59Kb)
  345. // Not compatible with ALEXA_SUPPORT at the moment
  346. #endif
  347. #ifndef SSDP_DEVICE_TYPE
  348. #define SSDP_DEVICE_TYPE "upnp:rootdevice"
  349. //#define SSDP_DEVICE_TYPE "urn:schemas-upnp-org:device:BinaryLight:1"
  350. #endif
  351. #if WEB_SUPPORT == 0
  352. #undef SSDP_SUPPORT
  353. #define SSDP_SUPPORT 0 // SSDP support requires web support
  354. #endif
  355. // -----------------------------------------------------------------------------
  356. // SPIFFS
  357. // -----------------------------------------------------------------------------
  358. #ifndef SPIFFS_SUPPORT
  359. #define SPIFFS_SUPPORT 0 // Do not add support for SPIFFS by default
  360. #endif
  361. // -----------------------------------------------------------------------------
  362. // OTA
  363. // -----------------------------------------------------------------------------
  364. #define OTA_PORT 8266 // OTA port
  365. #define OTA_GITHUB_FP "D7:9F:07:61:10:B3:92:93:E3:49:AC:89:84:5B:03:80:C1:9E:2F:8B"
  366. // -----------------------------------------------------------------------------
  367. // NOFUSS
  368. // -----------------------------------------------------------------------------
  369. #ifndef NOFUSS_SUPPORT
  370. #define NOFUSS_SUPPORT 0 // Do not enable support for NoFuss by default (12.65Kb)
  371. #endif
  372. #define NOFUSS_ENABLED 0 // Do not perform NoFUSS updates by default
  373. #define NOFUSS_SERVER "" // Default NoFuss Server
  374. #define NOFUSS_INTERVAL 3600000 // Check for updates every hour
  375. // -----------------------------------------------------------------------------
  376. // UART <-> MQTT
  377. // -----------------------------------------------------------------------------
  378. #ifndef UART_MQTT_SUPPORT
  379. #define UART_MQTT_SUPPORT 0 // No support by default
  380. #endif
  381. #define UART_MQTT_USE_SOFT 0 // Use SoftwareSerial
  382. #define UART_MQTT_HW_PORT Serial // Hardware serial port (if UART_MQTT_USE_SOFT == 0)
  383. #define UART_MQTT_RX_PIN 4 // RX PIN (if UART_MQTT_USE_SOFT == 1)
  384. #define UART_MQTT_TX_PIN 5 // TX PIN (if UART_MQTT_USE_SOFT == 1)
  385. #define UART_MQTT_BAUDRATE 115200 // Serial speed
  386. #define UART_MQTT_BUFFER_SIZE 100 // UART buffer size
  387. #if UART_MQTT_SUPPORT
  388. #define MQTT_SUPPORT 1
  389. #undef TERMINAL_SUPPORT
  390. #define TERMINAL_SUPPORT 0
  391. #undef DEBUG_SERIAL_SUPPORT
  392. #define DEBUG_SERIAL_SUPPORT 0
  393. #endif
  394. // -----------------------------------------------------------------------------
  395. // MQTT
  396. // -----------------------------------------------------------------------------
  397. #ifndef MQTT_SUPPORT
  398. #define MQTT_SUPPORT 1 // MQTT support (22.38Kb async, 12.48Kb sync)
  399. #endif
  400. #ifndef MQTT_USE_ASYNC
  401. #define MQTT_USE_ASYNC 1 // Use AysncMQTTClient (1) or PubSubClient (0)
  402. #endif
  403. // MQTT OVER SSL
  404. // Using MQTT over SSL works pretty well but generates problems with the web interface.
  405. // It could be a good idea to use it in conjuntion with WEB_SUPPORT=0.
  406. // Requires ASYNC_TCP_SSL_ENABLED to 1 and ESP8266 Arduino Core 2.4.0.
  407. //
  408. // You can use SSL with MQTT_USE_ASYNC=1 (AsyncMqttClient library)
  409. // but you might experience hiccups on the web interface, so my recommendation is:
  410. // WEB_SUPPORT=0
  411. //
  412. // If you use SSL with MQTT_USE_ASYNC=0 (PubSubClient library)
  413. // you will have to disable all the modules that use ESPAsyncTCP, that is:
  414. // ALEXA_SUPPORT=0, INFLUXDB_SUPPORT=0, TELNET_SUPPORT=0, THINGSPEAK_SUPPORT=0 and WEB_SUPPORT=0
  415. //
  416. // You will need the fingerprint for your MQTT server, example for CloudMQTT:
  417. // $ echo -n | openssl s_client -connect m11.cloudmqtt.com:24055 > cloudmqtt.pem
  418. // $ openssl x509 -noout -in cloudmqtt.pem -fingerprint -sha1
  419. #define MQTT_SSL_ENABLED 0 // By default MQTT over SSL will not be enabled
  420. #define MQTT_SSL_FINGERPRINT "" // SSL fingerprint of the server
  421. #define MQTT_ENABLED 0 // Do not enable MQTT connection by default
  422. #define MQTT_AUTOCONNECT 1 // If enabled and MDNS_SERVER_SUPPORT=1 will perform an autodiscover and
  423. // autoconnect to the first MQTT broker found if none defined
  424. #define MQTT_SERVER "" // Default MQTT broker address
  425. #define MQTT_USER "" // Default MQTT broker usename
  426. #define MQTT_PASS "" // Default MQTT broker password
  427. #define MQTT_PORT 1883 // MQTT broker port
  428. #define MQTT_TOPIC "{hostname}" // Default MQTT base topic
  429. #define MQTT_RETAIN true // MQTT retain flag
  430. #define MQTT_QOS 0 // MQTT QoS value for all messages
  431. #define MQTT_KEEPALIVE 30 // MQTT keepalive value
  432. #define MQTT_RECONNECT_DELAY_MIN 5000 // Try to reconnect in 5 seconds upon disconnection
  433. #define MQTT_RECONNECT_DELAY_STEP 5000 // Increase the reconnect delay in 5 seconds after each failed attempt
  434. #define MQTT_RECONNECT_DELAY_MAX 120000 // Set reconnect time to 2 minutes at most
  435. #define MQTT_SKIP_RETAINED 1 // Skip retained messages on connection
  436. #define MQTT_SKIP_TIME 1000 // Skip messages for 1 second anter connection
  437. #define MQTT_USE_JSON 0 // Group messages in a JSON body
  438. #define MQTT_USE_JSON_DELAY 100 // Wait this many ms before grouping messages
  439. #define MQTT_QUEUE_MAX_SIZE 20 // Size of the MQTT queue when MQTT_USE_JSON is enabled
  440. // These are the properties that will be sent when useJson is true
  441. #ifndef MQTT_ENQUEUE_IP
  442. #define MQTT_ENQUEUE_IP 1
  443. #endif
  444. #ifndef MQTT_ENQUEUE_MAC
  445. #define MQTT_ENQUEUE_MAC 1
  446. #endif
  447. #ifndef MQTT_ENQUEUE_HOSTNAME
  448. #define MQTT_ENQUEUE_HOSTNAME 1
  449. #endif
  450. #ifndef MQTT_ENQUEUE_DATETIME
  451. #define MQTT_ENQUEUE_DATETIME 1
  452. #endif
  453. #ifndef MQTT_ENQUEUE_MESSAGE_ID
  454. #define MQTT_ENQUEUE_MESSAGE_ID 1
  455. #endif
  456. // These particles will be concatenated to the MQTT_TOPIC base to form the actual topic
  457. #define MQTT_TOPIC_JSON "data"
  458. #define MQTT_TOPIC_ACTION "action"
  459. #define MQTT_TOPIC_RELAY "relay"
  460. #define MQTT_TOPIC_LED "led"
  461. #define MQTT_TOPIC_BUTTON "button"
  462. #define MQTT_TOPIC_IP "ip"
  463. #define MQTT_TOPIC_VERSION "version"
  464. #define MQTT_TOPIC_UPTIME "uptime"
  465. #define MQTT_TOPIC_DATETIME "datetime"
  466. #define MQTT_TOPIC_FREEHEAP "freeheap"
  467. #define MQTT_TOPIC_VCC "vcc"
  468. #define MQTT_TOPIC_STATUS "status"
  469. #define MQTT_TOPIC_MAC "mac"
  470. #define MQTT_TOPIC_RSSI "rssi"
  471. #define MQTT_TOPIC_MESSAGE_ID "id"
  472. #define MQTT_TOPIC_APP "app"
  473. #define MQTT_TOPIC_INTERVAL "interval"
  474. #define MQTT_TOPIC_HOSTNAME "host"
  475. #define MQTT_TOPIC_TIME "time"
  476. #define MQTT_TOPIC_RFOUT "rfout"
  477. #define MQTT_TOPIC_RFIN "rfin"
  478. #define MQTT_TOPIC_RFLEARN "rflearn"
  479. #define MQTT_TOPIC_RFRAW "rfraw"
  480. #define MQTT_TOPIC_UARTIN "uartin"
  481. #define MQTT_TOPIC_UARTOUT "uartout"
  482. // Light module
  483. #define MQTT_TOPIC_CHANNEL "channel"
  484. #define MQTT_TOPIC_COLOR "color" // DEPRECATED, use RGB instead
  485. #define MQTT_TOPIC_COLOR_RGB "rgb"
  486. #define MQTT_TOPIC_COLOR_HSV "hsv"
  487. #define MQTT_TOPIC_ANIM_MODE "anim_mode"
  488. #define MQTT_TOPIC_ANIM_SPEED "anim_speed"
  489. #define MQTT_TOPIC_BRIGHTNESS "brightness"
  490. #define MQTT_TOPIC_MIRED "mired"
  491. #define MQTT_TOPIC_KELVIN "kelvin"
  492. #define MQTT_STATUS_ONLINE "1" // Value for the device ON message
  493. #define MQTT_STATUS_OFFLINE "0" // Value for the device OFF message (will)
  494. #define MQTT_ACTION_RESET "reboot" // RESET MQTT topic particle
  495. // Internal MQTT events (do not change)
  496. #define MQTT_CONNECT_EVENT 0
  497. #define MQTT_DISCONNECT_EVENT 1
  498. #define MQTT_MESSAGE_EVENT 2
  499. #define MQTT_MESSAGE_ID_SHIFT 1000 // Store MQTT message id into EEPROM every these many
  500. // Custom get and set postfixes
  501. // Use something like "/status" or "/set", with leading slash
  502. // Since 1.9.0 the default value is "" for getter and "/set" for setter
  503. #ifndef MQTT_GETTER
  504. #define MQTT_GETTER ""
  505. #endif
  506. #ifndef MQTT_SETTER
  507. #define MQTT_SETTER "/set"
  508. #endif
  509. // -----------------------------------------------------------------------------
  510. // BROKER
  511. // -----------------------------------------------------------------------------
  512. #ifndef BROKER_SUPPORT
  513. #define BROKER_SUPPORT 1 // The broker is a poor-man's pubsub manager
  514. #endif
  515. // -----------------------------------------------------------------------------
  516. // SETTINGS
  517. // -----------------------------------------------------------------------------
  518. #ifndef SETTINGS_AUTOSAVE
  519. #define SETTINGS_AUTOSAVE 1 // Autosave settings o force manual commit
  520. #endif
  521. #define SETTINGS_MAX_LIST_COUNT 10 // Maximum index for settings lists
  522. // -----------------------------------------------------------------------------
  523. // LIGHT
  524. // -----------------------------------------------------------------------------
  525. // Available light providers (do not change)
  526. #define LIGHT_PROVIDER_NONE 0
  527. #define LIGHT_PROVIDER_MY92XX 1 // works with MY9291 and MY9231
  528. #define LIGHT_PROVIDER_DIMMER 2
  529. // LIGHT_PROVIDER_DIMMER can have from 1 to 5 different channels.
  530. // They have to be defined for each device in the hardware.h file.
  531. // If 3 or more channels first 3 will be considered RGB.
  532. // Usual configurations are:
  533. // 1 channels => W
  534. // 2 channels => WW
  535. // 3 channels => RGB
  536. // 4 channels => RGBW
  537. // 5 channels => RGBWW
  538. #ifndef LIGHT_SAVE_ENABLED
  539. #define LIGHT_SAVE_ENABLED 1 // Light channel values saved by default after each change
  540. #endif
  541. #define LIGHT_SAVE_DELAY 5 // Persist color after 5 seconds to avoid wearing out
  542. #ifndef LIGHT_MAX_PWM
  543. #if LIGHT_PROVIDER == LIGHT_PROVIDER_MY92XX
  544. #define LIGHT_MAX_PWM 255
  545. #endif
  546. #if LIGHT_PROVIDER == LIGHT_PROVIDER_DIMMER
  547. #define LIGHT_MAX_PWM 10000 // 5000 * 200ns => 1 kHz
  548. #endif
  549. #endif // LIGHT_MAX_PWM
  550. #ifndef LIGHT_LIMIT_PWM
  551. #define LIGHT_LIMIT_PWM LIGHT_MAX_PWM // Limit PWM to this value (prevent 100% power)
  552. #endif
  553. #ifndef LIGHT_MAX_VALUE
  554. #define LIGHT_MAX_VALUE 255 // Maximum light value
  555. #endif
  556. #define LIGHT_MAX_BRIGHTNESS 255 // Maximun brightness value
  557. #define LIGHT_STEP 32 // Step size
  558. #define LIGHT_USE_COLOR 1 // Use 3 first channels as RGB
  559. #define LIGHT_USE_WHITE 0 // Use white channel whenever RGB have the same value
  560. #define LIGHT_USE_GAMMA 0 // Use gamma correction for color channels
  561. #define LIGHT_USE_CSS 1 // Use CSS style to report colors (1=> "#FF0000", 0=> "255,0,0")
  562. #define LIGHT_USE_RGB 0 // Use RGB color selector (1=> RGB, 0=> HSV)
  563. #define LIGHT_USE_TRANSITIONS 1 // Transitions between colors
  564. #define LIGHT_TRANSITION_STEP 10 // Time in millis between each transtion step
  565. #define LIGHT_TRANSITION_STEPS 50 // Number of steps to acomplish transition
  566. // -----------------------------------------------------------------------------
  567. // DOMOTICZ
  568. // -----------------------------------------------------------------------------
  569. #ifndef DOMOTICZ_SUPPORT
  570. #define DOMOTICZ_SUPPORT MQTT_SUPPORT // Build with domoticz (if MQTT) support (1.72Kb)
  571. #endif
  572. #if DOMOTICZ_SUPPORT
  573. #undef MQTT_SUPPORT
  574. #define MQTT_SUPPORT 1 // If Domoticz enabled enable MQTT
  575. #endif
  576. #define DOMOTICZ_ENABLED 0 // Disable domoticz by default
  577. #define DOMOTICZ_IN_TOPIC "domoticz/in" // Default subscription topic
  578. #define DOMOTICZ_OUT_TOPIC "domoticz/out" // Default publication topic
  579. // -----------------------------------------------------------------------------
  580. // HOME ASSISTANT
  581. // -----------------------------------------------------------------------------
  582. #ifndef HOMEASSISTANT_SUPPORT
  583. #define HOMEASSISTANT_SUPPORT MQTT_SUPPORT // Build with home assistant support (if MQTT, 1.64Kb)
  584. #endif
  585. #if HOMEASSISTANT_SUPPORT
  586. #undef MQTT_SUPPORT
  587. #define MQTT_SUPPORT 1 // If Home Assistant enabled enable MQTT
  588. #endif
  589. #define HOMEASSISTANT_ENABLED 0 // Integration not enabled by default
  590. #define HOMEASSISTANT_PREFIX "homeassistant" // Default MQTT prefix
  591. // -----------------------------------------------------------------------------
  592. // INFLUXDB
  593. // -----------------------------------------------------------------------------
  594. #ifndef INFLUXDB_SUPPORT
  595. #define INFLUXDB_SUPPORT 0 // Enable InfluxDB support by default (4.38Kb)
  596. #endif
  597. #define INFLUXDB_ENABLED 0 // InfluxDB disabled by default
  598. #define INFLUXDB_HOST "" // Default server
  599. #define INFLUXDB_PORT 8086 // Default InfluxDB port
  600. #define INFLUXDB_DATABASE "" // Default database
  601. #define INFLUXDB_USERNAME "" // Default username
  602. #define INFLUXDB_PASSWORD "" // Default password
  603. // -----------------------------------------------------------------------------
  604. // THINGSPEAK
  605. // -----------------------------------------------------------------------------
  606. #ifndef THINGSPEAK_SUPPORT
  607. #define THINGSPEAK_SUPPORT 1 // Enable Thingspeak support by default (2.56Kb)
  608. #endif
  609. #define THINGSPEAK_ENABLED 0 // Thingspeak disabled by default
  610. #define THINGSPEAK_APIKEY "" // Default API KEY
  611. #define THINGSPEAK_USE_ASYNC 1 // Use AsyncClient instead of WiFiClientSecure
  612. // THINGSPEAK OVER SSL
  613. // Using THINGSPEAK over SSL works well but generates problems with the web interface,
  614. // so you should compile it with WEB_SUPPORT to 0.
  615. // When THINGSPEAK_USE_ASYNC is 1, requires ASYNC_TCP_SSL_ENABLED to 1 and ESP8266 Arduino Core 2.4.0.
  616. #define THINGSPEAK_USE_SSL 0 // Use secure connection
  617. #define THINGSPEAK_FINGERPRINT "78 60 18 44 81 35 BF DF 77 84 D4 0A 22 0D 9B 4E 6C DC 57 2C"
  618. #define THINGSPEAK_HOST "api.thingspeak.com"
  619. #if THINGSPEAK_USE_SSL
  620. #define THINGSPEAK_PORT 443
  621. #else
  622. #define THINGSPEAK_PORT 80
  623. #endif
  624. #define THINGSPEAK_URL "/update"
  625. #define THINGSPEAK_MIN_INTERVAL 15000 // Minimum interval between POSTs (in millis)
  626. #ifndef ASYNC_TCP_SSL_ENABLED
  627. #if THINGSPEAK_USE_SSL && THINGSPEAK_USE_ASYNC
  628. #undef THINGSPEAK_SUPPORT // Thingspeak in ASYNC mode requires ASYNC_TCP_SSL_ENABLED
  629. #endif
  630. #endif
  631. // -----------------------------------------------------------------------------
  632. // SCHEDULER
  633. // -----------------------------------------------------------------------------
  634. #ifndef SCHEDULER_SUPPORT
  635. #define SCHEDULER_SUPPORT 1 // Enable scheduler (1.77Kb)
  636. #endif
  637. #if SCHEDULER_SUPPORT
  638. #undef NTP_SUPPORT
  639. #define NTP_SUPPORT 1 // Scheduler needs NTP
  640. #endif
  641. #define SCHEDULER_MAX_SCHEDULES 10 // Max schedules alowed
  642. // -----------------------------------------------------------------------------
  643. // NTP
  644. // -----------------------------------------------------------------------------
  645. #ifndef NTP_SUPPORT
  646. #define NTP_SUPPORT 1 // Build with NTP support by default (6.78Kb)
  647. #endif
  648. #define NTP_SERVER "pool.ntp.org" // Default NTP server
  649. #define NTP_TIME_OFFSET 1 // Default timezone offset (GMT+1)
  650. #define NTP_DAY_LIGHT true // Enable daylight time saving by default
  651. #define NTP_SYNC_INTERVAL 60 // NTP initial check every minute
  652. #define NTP_UPDATE_INTERVAL 1800 // NTP check every 30 minutes
  653. #define NTP_START_DELAY 1000 // Delay NTP start 1 second
  654. // -----------------------------------------------------------------------------
  655. // ALEXA
  656. // -----------------------------------------------------------------------------
  657. // This setting defines whether Alexa support should be built into the firmware
  658. #ifndef ALEXA_SUPPORT
  659. #define ALEXA_SUPPORT 1 // Enable Alexa support by default (10.84Kb)
  660. #endif
  661. // This is default value for the alexaEnabled setting that defines whether
  662. // this device should be discoberable and respond to Alexa commands.
  663. // Both ALEXA_SUPPORT and alexaEnabled should be 1 for Alexa support to work.
  664. #define ALEXA_ENABLED 1
  665. // -----------------------------------------------------------------------------
  666. // RFBRIDGE
  667. // This module is not compatible with RF_SUPPORT=1
  668. // -----------------------------------------------------------------------------
  669. #define RF_SEND_TIMES 4 // How many times to send the message
  670. #define RF_SEND_DELAY 500 // Interval between sendings in ms
  671. #define RF_RECEIVE_DELAY 500 // Interval between recieving in ms (avoid debouncing)
  672. #define RF_RAW_SUPPORT 0 // RF raw codes require a specific firmware for the EFM8BB1
  673. // https://github.com/rhx/RF-Bridge-EFM8BB1
  674. // -----------------------------------------------------------------------------
  675. // IR
  676. // -----------------------------------------------------------------------------
  677. #ifndef IR_SUPPORT
  678. #define IR_SUPPORT 0 // Do not build with IR support by default (10.25Kb)
  679. #endif
  680. #ifndef IR_PIN
  681. #define IR_PIN 4 // IR LED
  682. #endif
  683. // 24 Buttons Set of the IR Remote
  684. #ifndef IR_BUTTON_SET
  685. #define IR_BUTTON_SET 1 // IR button set to use (see below)
  686. #endif
  687. // IR Button modes
  688. #define IR_BUTTON_MODE_NONE 0
  689. #define IR_BUTTON_MODE_RGB 1
  690. #define IR_BUTTON_MODE_HSV 2
  691. #define IR_BUTTON_MODE_BRIGHTER 3
  692. #define IR_BUTTON_MODE_STATE 4
  693. #define IR_BUTTON_MODE_EFFECT 5
  694. #define LIGHT_EFFECT_SOLID 0
  695. #define LIGHT_EFFECT_FLASH 1
  696. #define LIGHT_EFFECT_STROBE 2
  697. #define LIGHT_EFFECT_FADE 3
  698. #define LIGHT_EFFECT_SMOOTH 4
  699. //Remote Buttons SET 1 (for the original Remote shipped with the controller)
  700. #if IR_SUPPORT
  701. #if IR_BUTTON_SET == 1
  702. /*
  703. +------+------+------+------+
  704. | UP | Down | OFF | ON |
  705. +------+------+------+------+
  706. | R | G | B | W |
  707. +------+------+------+------+
  708. | 1 | 2 | 3 |FLASH |
  709. +------+------+------+------+
  710. | 4 | 5 | 6 |STROBE|
  711. +------+------+------+------+
  712. | 7 | 8 | 9 | FADE |
  713. +------+------+------+------+
  714. | 10 | 11 | 12 |SMOOTH|
  715. +------+------+------+------+
  716. */
  717. #define IR_BUTTON_COUNT 24
  718. const unsigned long IR_BUTTON[IR_BUTTON_COUNT][3] PROGMEM = {
  719. { 0xFF906F, IR_BUTTON_MODE_BRIGHTER, 1 },
  720. { 0xFFB847, IR_BUTTON_MODE_BRIGHTER, 0 },
  721. { 0xFFF807, IR_BUTTON_MODE_STATE, 0 },
  722. { 0xFFB04F, IR_BUTTON_MODE_STATE, 1 },
  723. { 0xFF9867, IR_BUTTON_MODE_RGB, 0xFF0000 },
  724. { 0xFFD827, IR_BUTTON_MODE_RGB, 0x00FF00 },
  725. { 0xFF8877, IR_BUTTON_MODE_RGB, 0x0000FF },
  726. { 0xFFA857, IR_BUTTON_MODE_RGB, 0xFFFFFF },
  727. { 0xFFE817, IR_BUTTON_MODE_RGB, 0xD13A01 },
  728. { 0xFF48B7, IR_BUTTON_MODE_RGB, 0x00E644 },
  729. { 0xFF6897, IR_BUTTON_MODE_RGB, 0x0040A7 },
  730. { 0xFFB24D, IR_BUTTON_MODE_EFFECT, LIGHT_EFFECT_FLASH },
  731. { 0xFF02FD, IR_BUTTON_MODE_RGB, 0xE96F2A },
  732. { 0xFF32CD, IR_BUTTON_MODE_RGB, 0x00BEBF },
  733. { 0xFF20DF, IR_BUTTON_MODE_RGB, 0x56406F },
  734. { 0xFF00FF, IR_BUTTON_MODE_EFFECT, LIGHT_EFFECT_STROBE },
  735. { 0xFF50AF, IR_BUTTON_MODE_RGB, 0xEE9819 },
  736. { 0xFF7887, IR_BUTTON_MODE_RGB, 0x00799A },
  737. { 0xFF708F, IR_BUTTON_MODE_RGB, 0x944E80 },
  738. { 0xFF58A7, IR_BUTTON_MODE_EFFECT, LIGHT_EFFECT_FADE },
  739. { 0xFF38C7, IR_BUTTON_MODE_RGB, 0xFFFF00 },
  740. { 0xFF28D7, IR_BUTTON_MODE_RGB, 0x0060A1 },
  741. { 0xFFF00F, IR_BUTTON_MODE_RGB, 0xEF45AD },
  742. { 0xFF30CF, IR_BUTTON_MODE_EFFECT, LIGHT_EFFECT_SMOOTH }
  743. };
  744. #endif
  745. //Remote Buttons SET 2 (another identical IR Remote shipped with another controller)
  746. #if IR_BUTTON_SET == 2
  747. /*
  748. +------+------+------+------+
  749. | UP | Down | OFF | ON |
  750. +------+------+------+------+
  751. | R | G | B | W |
  752. +------+------+------+------+
  753. | 1 | 2 | 3 |FLASH |
  754. +------+------+------+------+
  755. | 4 | 5 | 6 |STROBE|
  756. +------+------+------+------+
  757. | 7 | 8 | 9 | FADE |
  758. +------+------+------+------+
  759. | 10 | 11 | 12 |SMOOTH|
  760. +------+------+------+------+
  761. */
  762. #define IR_BUTTON_COUNT 24
  763. const unsigned long IR_BUTTON[IR_BUTTON_COUNT][3] PROGMEM = {
  764. { 0xFF00FF, IR_BUTTON_MODE_BRIGHTER, 1 },
  765. { 0xFF807F, IR_BUTTON_MODE_BRIGHTER, 0 },
  766. { 0xFF40BF, IR_BUTTON_MODE_STATE, 0 },
  767. { 0xFFC03F, IR_BUTTON_MODE_STATE, 1 },
  768. { 0xFF20DF, IR_BUTTON_MODE_RGB, 0xFF0000 },
  769. { 0xFFA05F, IR_BUTTON_MODE_RGB, 0x00FF00 },
  770. { 0xFF609F, IR_BUTTON_MODE_RGB, 0x0000FF },
  771. { 0xFFE01F, IR_BUTTON_MODE_RGB, 0xFFFFFF },
  772. { 0xFF10EF, IR_BUTTON_MODE_RGB, 0xD13A01 },
  773. { 0xFF906F, IR_BUTTON_MODE_RGB, 0x00E644 },
  774. { 0xFF50AF, IR_BUTTON_MODE_RGB, 0x0040A7 },
  775. { 0xFFD02F, IR_BUTTON_MODE_EFFECT, LIGHT_EFFECT_FLASH },
  776. { 0xFF30CF, IR_BUTTON_MODE_RGB, 0xE96F2A },
  777. { 0xFFB04F, IR_BUTTON_MODE_RGB, 0x00BEBF },
  778. { 0xFF708F, IR_BUTTON_MODE_RGB, 0x56406F },
  779. { 0xFFF00F, IR_BUTTON_MODE_EFFECT, LIGHT_EFFECT_STROBE },
  780. { 0xFF08F7, IR_BUTTON_MODE_RGB, 0xEE9819 },
  781. { 0xFF8877, IR_BUTTON_MODE_RGB, 0x00799A },
  782. { 0xFF48B7, IR_BUTTON_MODE_RGB, 0x944E80 },
  783. { 0xFFC837, IR_BUTTON_MODE_EFFECT, LIGHT_EFFECT_FADE },
  784. { 0xFF28D7, IR_BUTTON_MODE_RGB, 0xFFFF00 },
  785. { 0xFFA857, IR_BUTTON_MODE_RGB, 0x0060A1 },
  786. { 0xFF6897, IR_BUTTON_MODE_RGB, 0xEF45AD },
  787. { 0xFFE817, IR_BUTTON_MODE_EFFECT, LIGHT_EFFECT_SMOOTH }
  788. };
  789. #endif
  790. #endif // IR_SUPPORT
  791. //--------------------------------------------------------------------------------
  792. // Custom RF module
  793. // Check http://tinkerman.cat/adding-rf-to-a-non-rf-itead-sonoff/
  794. // Enable support by passing RF_SUPPORT=1 build flag
  795. // This module is not compatible with RFBRIDGE
  796. //--------------------------------------------------------------------------------
  797. #ifndef RF_SUPPORT
  798. #define RF_SUPPORT 0
  799. #endif
  800. #ifndef RF_PIN
  801. #define RF_PIN 14
  802. #endif
  803. #define RF_DEBOUNCE 500
  804. #define RF_LEARN_TIMEOUT 60000