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.

1544 lines
49 KiB

8 years ago
8 years ago
6 years ago
7 years ago
7 years ago
7 years ago
8 years ago
8 years ago
6 years ago
6 years ago
6 years ago
8 years ago
8 years ago
6 years ago
6 years ago
6 years ago
6 years ago
8 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. // When defined, ADMIN_PASS must be 8..63 printable ASCII characters. See:
  10. // https://en.wikipedia.org/wiki/Wi-Fi_Protected_Access#Target_users_(authentication_key_distribution)
  11. // https://github.com/xoseperez/espurna/issues/1151
  12. #ifndef ADMIN_PASS
  13. #define ADMIN_PASS "fibonacci" // Default password (WEB, OTA, WIFI SoftAP)
  14. #endif
  15. #ifndef USE_PASSWORD
  16. #define USE_PASSWORD 1 // Insecurity caution! Disabling this will disable password querying completely.
  17. #endif
  18. #ifndef LOOP_DELAY_TIME
  19. #define LOOP_DELAY_TIME 10 // Delay for the main loop, in millis [0-250]
  20. // Recommended minimum is 10, see:
  21. // https://github.com/xoseperez/espurna/issues/1541
  22. // https://github.com/xoseperez/espurna/issues/1631
  23. // https://github.com/esp8266/Arduino/issues/5825
  24. #endif
  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. #ifndef DEBUG_UDP_IP
  62. #define DEBUG_UDP_IP IPAddress(192, 168, 1, 100)
  63. #endif
  64. #ifndef DEBUG_UDP_PORT
  65. #define DEBUG_UDP_PORT 514
  66. #endif
  67. // If DEBUG_UDP_PORT is set to 514 syslog format is assumed
  68. // (https://tools.ietf.org/html/rfc3164)
  69. // DEBUG_UDP_FAC_PRI is the facility+priority
  70. #define DEBUG_UDP_FAC_PRI (SYSLOG_LOCAL0 | SYSLOG_DEBUG)
  71. //------------------------------------------------------------------------------
  72. #ifndef DEBUG_TELNET_SUPPORT
  73. #define DEBUG_TELNET_SUPPORT 1 // Enable telnet debug log (will only work if TELNET_SUPPORT is also 1)
  74. #endif
  75. //------------------------------------------------------------------------------
  76. #ifndef DEBUG_WEB_SUPPORT
  77. #define DEBUG_WEB_SUPPORT 1 // Enable web debug log (will only work if WEB_SUPPORT is also 1)
  78. #endif
  79. //------------------------------------------------------------------------------
  80. // TELNET
  81. //------------------------------------------------------------------------------
  82. #ifndef TELNET_SUPPORT
  83. #define TELNET_SUPPORT 1 // Enable telnet support by default (3.34Kb)
  84. #endif
  85. #ifndef TELNET_STA
  86. #define TELNET_STA 0 // By default, disallow connections via STA interface
  87. #endif
  88. #ifndef TELNET_AUTHENTICATION
  89. #define TELNET_AUTHENTICATION 1 // Request password to start telnet session by default
  90. #endif
  91. #define TELNET_PORT 23 // Port to listen to telnet clients
  92. #define TELNET_MAX_CLIENTS 1 // Max number of concurrent telnet clients
  93. //------------------------------------------------------------------------------
  94. // TERMINAL
  95. //------------------------------------------------------------------------------
  96. #ifndef TERMINAL_SUPPORT
  97. #define TERMINAL_SUPPORT 1 // Enable terminal commands (0.97Kb)
  98. #endif
  99. #define TERMINAL_BUFFER_SIZE 128 // Max size for commands commands
  100. //------------------------------------------------------------------------------
  101. // SYSTEM CHECK
  102. //------------------------------------------------------------------------------
  103. #ifndef SYSTEM_CHECK_ENABLED
  104. #define SYSTEM_CHECK_ENABLED 1 // Enable crash check by default
  105. #endif
  106. #ifndef SYSTEM_CHECK_TIME
  107. #define SYSTEM_CHECK_TIME 60000 // The system is considered stable after these many millis
  108. #endif
  109. #ifndef SYSTEM_CHECK_MAX
  110. #define SYSTEM_CHECK_MAX 5 // After this many crashes on boot
  111. // the system is flagged as unstable
  112. #endif
  113. //------------------------------------------------------------------------------
  114. // EEPROM
  115. //------------------------------------------------------------------------------
  116. #define EEPROM_SIZE SPI_FLASH_SEC_SIZE // EEPROM size in bytes (1 sector = 4096 bytes)
  117. //#define EEPROM_RORATE_SECTORS 2 // Number of sectors to use for EEPROM rotation
  118. // If not defined the firmware will use a number based
  119. // on the number of available sectors
  120. #define EEPROM_RELAY_STATUS 0 // Address for the relay status (1 byte)
  121. #define EEPROM_ENERGY_COUNT 1 // Address for the energy counter (4 bytes)
  122. #define EEPROM_CUSTOM_RESET 5 // Address for the reset reason (1 byte)
  123. #define EEPROM_CRASH_COUNTER 6 // Address for the crash counter (1 byte)
  124. #define EEPROM_MESSAGE_ID 7 // Address for the MQTT message id (4 bytes)
  125. #define EEPROM_ROTATE_DATA 11 // Reserved for the EEPROM_ROTATE library (3 bytes)
  126. #define EEPROM_DATA_END 14 // End of custom EEPROM data block
  127. //------------------------------------------------------------------------------
  128. // THERMOSTAT
  129. //------------------------------------------------------------------------------
  130. #ifndef THERMOSTAT_SUPPORT
  131. #define THERMOSTAT_SUPPORT 0
  132. #endif
  133. #ifndef THERMOSTAT_DISPLAY_SUPPORT
  134. #define THERMOSTAT_DISPLAY_SUPPORT 0
  135. #endif
  136. #define THERMOSTAT_SERVER_LOST_INTERVAL 120000 //server means lost after 2 min from last response
  137. #define THERMOSTAT_REMOTE_TEMP_MAX_WAIT 120 // 2 min
  138. //------------------------------------------------------------------------------
  139. // HEARTBEAT
  140. //------------------------------------------------------------------------------
  141. #define HEARTBEAT_NONE 0 // Never send heartbeat
  142. #define HEARTBEAT_ONCE 1 // Send it only once upon MQTT connection
  143. #define HEARTBEAT_REPEAT 2 // Send it upon MQTT connection and every HEARTBEAT_INTERVAL
  144. #define HEARTBEAT_REPEAT_STATUS 3 // Send it upon MQTT connection and every HEARTBEAT_INTERVAL only STATUS report
  145. // Backwards compatibility check
  146. #if defined(HEARTBEAT_ENABLED) && (HEARTBEAT_ENABLED == 0)
  147. #define HEARTBEAT_MODE HEARTBEAT_NONE
  148. #endif
  149. #ifndef HEARTBEAT_MODE
  150. #define HEARTBEAT_MODE HEARTBEAT_REPEAT
  151. #endif
  152. #ifndef HEARTBEAT_INTERVAL
  153. #define HEARTBEAT_INTERVAL 300 // Interval between heartbeat messages (in sec)
  154. #endif
  155. #define UPTIME_OVERFLOW 4294967295 // Uptime overflow value
  156. // Values that will be reported in heartbeat
  157. #ifndef HEARTBEAT_REPORT_STATUS
  158. #define HEARTBEAT_REPORT_STATUS 1
  159. #endif
  160. #ifndef HEARTBEAT_REPORT_SSID
  161. #define HEARTBEAT_REPORT_SSID 1
  162. #endif
  163. #ifndef HEARTBEAT_REPORT_IP
  164. #define HEARTBEAT_REPORT_IP 1
  165. #endif
  166. #ifndef HEARTBEAT_REPORT_MAC
  167. #define HEARTBEAT_REPORT_MAC 1
  168. #endif
  169. #ifndef HEARTBEAT_REPORT_RSSI
  170. #define HEARTBEAT_REPORT_RSSI 1
  171. #endif
  172. #ifndef HEARTBEAT_REPORT_UPTIME
  173. #define HEARTBEAT_REPORT_UPTIME 1
  174. #endif
  175. #ifndef HEARTBEAT_REPORT_DATETIME
  176. #define HEARTBEAT_REPORT_DATETIME 1
  177. #endif
  178. #ifndef HEARTBEAT_REPORT_FREEHEAP
  179. #define HEARTBEAT_REPORT_FREEHEAP 1
  180. #endif
  181. #ifndef HEARTBEAT_REPORT_VCC
  182. #define HEARTBEAT_REPORT_VCC 1
  183. #endif
  184. #ifndef HEARTBEAT_REPORT_RELAY
  185. #define HEARTBEAT_REPORT_RELAY 1
  186. #endif
  187. #ifndef HEARTBEAT_REPORT_LIGHT
  188. #define HEARTBEAT_REPORT_LIGHT 1
  189. #endif
  190. #ifndef HEARTBEAT_REPORT_HOSTNAME
  191. #define HEARTBEAT_REPORT_HOSTNAME 1
  192. #endif
  193. #ifndef HEARTBEAT_REPORT_DESCRIPTION
  194. #define HEARTBEAT_REPORT_DESCRIPTION 1
  195. #endif
  196. #ifndef HEARTBEAT_REPORT_APP
  197. #define HEARTBEAT_REPORT_APP 1
  198. #endif
  199. #ifndef HEARTBEAT_REPORT_VERSION
  200. #define HEARTBEAT_REPORT_VERSION 1
  201. #endif
  202. #ifndef HEARTBEAT_REPORT_BOARD
  203. #define HEARTBEAT_REPORT_BOARD 1
  204. #endif
  205. #ifndef HEARTBEAT_REPORT_LOADAVG
  206. #define HEARTBEAT_REPORT_LOADAVG 1
  207. #endif
  208. #ifndef HEARTBEAT_REPORT_INTERVAL
  209. #define HEARTBEAT_REPORT_INTERVAL 0
  210. #endif
  211. #if THERMOSTAT_SUPPORT && ! defined HEARTBEAT_REPORT_RANGE
  212. #define HEARTBEAT_REPORT_RANGE 1
  213. #else
  214. #define HEARTBEAT_REPORT_RANGE 0
  215. #endif
  216. #if THERMOSTAT_SUPPORT && ! defined HEARTBEAT_REPORT_REMOTE_TEMP
  217. #define HEARTBEAT_REPORT_REMOTE_TEMP 1
  218. #else
  219. #define HEARTBEAT_REPORT_REMOTE_TEMP 0
  220. #endif
  221. //------------------------------------------------------------------------------
  222. // Load average
  223. //------------------------------------------------------------------------------
  224. #ifndef LOADAVG_INTERVAL
  225. #define LOADAVG_INTERVAL 30000 // Interval between calculating load average (in ms)
  226. #endif
  227. //------------------------------------------------------------------------------
  228. // BUTTON
  229. //------------------------------------------------------------------------------
  230. #ifndef BUTTON_SUPPORT
  231. #define BUTTON_SUPPORT 1
  232. #endif
  233. #ifndef BUTTON_DEBOUNCE_DELAY
  234. #define BUTTON_DEBOUNCE_DELAY 50 // Debounce delay (ms)
  235. #endif
  236. #ifndef BUTTON_DBLCLICK_DELAY
  237. #define BUTTON_DBLCLICK_DELAY 500 // Time in ms to wait for a second (or third...) click
  238. #endif
  239. #ifndef BUTTON_LNGCLICK_DELAY
  240. #define BUTTON_LNGCLICK_DELAY 1000 // Time in ms holding the button down to get a long click
  241. #endif
  242. #ifndef BUTTON_LNGLNGCLICK_DELAY
  243. #define BUTTON_LNGLNGCLICK_DELAY 10000 // Time in ms holding the button down to get a long-long click
  244. #endif
  245. #ifndef BUTTON_MQTT_SEND_ALL_EVENTS
  246. #define BUTTON_MQTT_SEND_ALL_EVENTS 0 // 0 - to send only events the are bound to actions
  247. // 1 - to send all button events to MQTT
  248. #endif
  249. //------------------------------------------------------------------------------
  250. // ENCODER
  251. //------------------------------------------------------------------------------
  252. #ifndef ENCODER_SUPPORT
  253. #define ENCODER_SUPPORT 0
  254. #endif
  255. //------------------------------------------------------------------------------
  256. // LED
  257. //------------------------------------------------------------------------------
  258. #ifndef LED_SUPPORT
  259. #define LED_SUPPORT 1
  260. #endif
  261. //------------------------------------------------------------------------------
  262. // RELAY
  263. //------------------------------------------------------------------------------
  264. // Default boot mode: 0 means OFF, 1 ON and 2 whatever was before
  265. #ifndef RELAY_BOOT_MODE
  266. #define RELAY_BOOT_MODE RELAY_BOOT_OFF
  267. #endif
  268. // 0 means ANY, 1 zero or one and 2 one and only one
  269. #ifndef RELAY_SYNC
  270. #define RELAY_SYNC RELAY_SYNC_ANY
  271. #endif
  272. // Default pulse mode: 0 means no pulses, 1 means normally off, 2 normally on
  273. #ifndef RELAY_PULSE_MODE
  274. #define RELAY_PULSE_MODE RELAY_PULSE_NONE
  275. #endif
  276. // Default pulse time in seconds
  277. #ifndef RELAY_PULSE_TIME
  278. #define RELAY_PULSE_TIME 1.0
  279. #endif
  280. // Relay requests flood protection window - in seconds
  281. #ifndef RELAY_FLOOD_WINDOW
  282. #define RELAY_FLOOD_WINDOW 3
  283. #endif
  284. // Allowed actual relay changes inside requests flood protection window
  285. #ifndef RELAY_FLOOD_CHANGES
  286. #define RELAY_FLOOD_CHANGES 5
  287. #endif
  288. // Pulse with in milliseconds for a latched relay
  289. #ifndef RELAY_LATCHING_PULSE
  290. #define RELAY_LATCHING_PULSE 10
  291. #endif
  292. // Do not save relay state after these many milliseconds
  293. #ifndef RELAY_SAVE_DELAY
  294. #define RELAY_SAVE_DELAY 1000
  295. #endif
  296. #ifndef RELAY_REPORT_STATUS
  297. #define RELAY_REPORT_STATUS 1
  298. #endif
  299. // Configure the MQTT payload for ON/OFF
  300. #ifndef RELAY_MQTT_ON
  301. #define RELAY_MQTT_ON "1"
  302. #endif
  303. #ifndef RELAY_MQTT_OFF
  304. #define RELAY_MQTT_OFF "0"
  305. #endif
  306. // -----------------------------------------------------------------------------
  307. // WIFI
  308. // -----------------------------------------------------------------------------
  309. #ifndef WIFI_CONNECT_TIMEOUT
  310. #define WIFI_CONNECT_TIMEOUT 60000 // Connecting timeout for WIFI in ms
  311. #endif
  312. #ifndef WIFI_RECONNECT_INTERVAL
  313. #define WIFI_RECONNECT_INTERVAL 180000 // If could not connect to WIFI, retry after this time in ms
  314. #endif
  315. #ifndef WIFI_MAX_NETWORKS
  316. #define WIFI_MAX_NETWORKS 5 // Max number of WIFI connection configurations
  317. #endif
  318. #ifndef WIFI_AP_CAPTIVE
  319. #define WIFI_AP_CAPTIVE 1 // Captive portal enabled when in AP mode
  320. #endif
  321. #ifndef WIFI_FALLBACK_APMODE
  322. #define WIFI_FALLBACK_APMODE 1 // Fallback to AP mode if no STA connection
  323. #endif
  324. #ifndef WIFI_SLEEP_MODE
  325. #define WIFI_SLEEP_MODE WIFI_NONE_SLEEP // WIFI_NONE_SLEEP, WIFI_LIGHT_SLEEP or WIFI_MODEM_SLEEP
  326. #endif
  327. #ifndef WIFI_SCAN_NETWORKS
  328. #define WIFI_SCAN_NETWORKS 1 // Perform a network scan before connecting
  329. #endif
  330. // Optional hardcoded configuration (up to 2 networks)
  331. #ifndef WIFI1_SSID
  332. #define WIFI1_SSID ""
  333. #endif
  334. #ifndef WIFI1_PASS
  335. #define WIFI1_PASS ""
  336. #endif
  337. #ifndef WIFI1_IP
  338. #define WIFI1_IP ""
  339. #endif
  340. #ifndef WIFI1_GW
  341. #define WIFI1_GW ""
  342. #endif
  343. #ifndef WIFI1_MASK
  344. #define WIFI1_MASK ""
  345. #endif
  346. #ifndef WIFI1_DNS
  347. #define WIFI1_DNS ""
  348. #endif
  349. #ifndef WIFI2_SSID
  350. #define WIFI2_SSID ""
  351. #endif
  352. #ifndef WIFI2_PASS
  353. #define WIFI2_PASS ""
  354. #endif
  355. #ifndef WIFI2_IP
  356. #define WIFI2_IP ""
  357. #endif
  358. #ifndef WIFI2_GW
  359. #define WIFI2_GW ""
  360. #endif
  361. #ifndef WIFI2_MASK
  362. #define WIFI2_MASK ""
  363. #endif
  364. #ifndef WIFI2_DNS
  365. #define WIFI2_DNS ""
  366. #endif
  367. #ifndef WIFI_RSSI_1M
  368. #define WIFI_RSSI_1M -30 // Calibrate it with your router reading the RSSI at 1m
  369. #endif
  370. #ifndef WIFI_PROPAGATION_CONST
  371. #define WIFI_PROPAGATION_CONST 4 // This is typically something between 2.7 to 4.3 (free space is 2)
  372. #endif
  373. // -----------------------------------------------------------------------------
  374. // WEB
  375. // -----------------------------------------------------------------------------
  376. #ifndef WEB_SUPPORT
  377. #define WEB_SUPPORT 1 // Enable web support (http, api, 121.65Kb)
  378. #endif
  379. #ifndef WEB_EMBEDDED
  380. #define WEB_EMBEDDED 1 // Build the firmware with the web interface embedded in
  381. #endif
  382. // This is not working at the moment!!
  383. // Requires ASYNC_TCP_SSL_ENABLED to 1 and ESP8266 Arduino Core 2.4.0
  384. #ifndef WEB_SSL_ENABLED
  385. #define WEB_SSL_ENABLED 0 // Use HTTPS web interface
  386. #endif
  387. #ifndef WEB_USERNAME
  388. #define WEB_USERNAME "admin" // HTTP username
  389. #endif
  390. #ifndef WEB_FORCE_PASS_CHANGE
  391. #define WEB_FORCE_PASS_CHANGE 1 // Force the user to change the password if default one
  392. #endif
  393. #ifndef WEB_PORT
  394. #define WEB_PORT 80 // HTTP port
  395. #endif
  396. // Defining a WEB_REMOTE_DOMAIN will enable Cross-Origin Resource Sharing (CORS)
  397. // so you will be able to login to this device from another domain. This will allow
  398. // you to manage all ESPurna devices in your local network from a unique installation
  399. // of the web UI. This installation could be in a local server (a Raspberry Pi, for instance)
  400. // or in the Internet. Since the WebUI is just one compressed file with HTML, CSS and JS
  401. // there are no special requirements. Any static web server will do (NGinx, Apache, Lighttpd,...).
  402. // The only requirement is that the resource must be available under this domain.
  403. #ifndef WEB_REMOTE_DOMAIN
  404. #define WEB_REMOTE_DOMAIN "http://espurna.io"
  405. #endif
  406. // -----------------------------------------------------------------------------
  407. // WEBSOCKETS
  408. // -----------------------------------------------------------------------------
  409. // This will only be enabled if WEB_SUPPORT is 1 (this is the default value)
  410. #ifndef WS_AUTHENTICATION
  411. #define WS_AUTHENTICATION 1 // WS authentication ON by default (see #507)
  412. #endif
  413. #ifndef WS_BUFFER_SIZE
  414. #define WS_BUFFER_SIZE 5 // Max number of secured websocket connections
  415. #endif
  416. #ifndef WS_TIMEOUT
  417. #define WS_TIMEOUT 1800000 // Timeout for secured websocket
  418. #endif
  419. #ifndef WS_UPDATE_INTERVAL
  420. #define WS_UPDATE_INTERVAL 30000 // Update clients every 30 seconds
  421. #endif
  422. // -----------------------------------------------------------------------------
  423. // API
  424. // -----------------------------------------------------------------------------
  425. #ifndef API_SUPPORT
  426. #define API_SUPPORT 1 // API (REST & RPC) support built in
  427. #endif
  428. // This will only be enabled if WEB_SUPPORT is 1 (this is the default value)
  429. #ifndef API_ENABLED
  430. #define API_ENABLED 0 // Do not enable API by default
  431. #endif
  432. #ifndef API_RESTFUL
  433. #define API_RESTFUL 1 // A restful API requires changes to be issued as PUT requests
  434. // Setting this to 0 will allow using GET to change relays, for instance
  435. #endif
  436. #ifndef API_BUFFER_SIZE
  437. #define API_BUFFER_SIZE 15 // Size of the buffer for HTTP GET API responses
  438. #endif
  439. #ifndef API_REAL_TIME_VALUES
  440. #define API_REAL_TIME_VALUES 0 // Show filtered/median values by default (0 => median, 1 => real time)
  441. #endif
  442. // -----------------------------------------------------------------------------
  443. // MDNS / LLMNR / NETBIOS / SSDP
  444. // -----------------------------------------------------------------------------
  445. #ifndef MDNS_SERVER_SUPPORT
  446. #define MDNS_SERVER_SUPPORT 1 // Publish services using mDNS by default (1.48Kb)
  447. #endif
  448. #ifndef MDNS_CLIENT_SUPPORT
  449. #define MDNS_CLIENT_SUPPORT 0 // Resolve mDNS names (3.44Kb)
  450. #endif
  451. #ifndef LLMNR_SUPPORT
  452. #define LLMNR_SUPPORT 0 // Publish device using LLMNR protocol by default (1.95Kb) - requires 2.4.0
  453. #endif
  454. #ifndef NETBIOS_SUPPORT
  455. #define NETBIOS_SUPPORT 0 // Publish device using NetBIOS protocol by default (1.26Kb) - requires 2.4.0
  456. #endif
  457. #ifndef SSDP_SUPPORT
  458. #define SSDP_SUPPORT 0 // Publish device using SSDP protocol by default (4.59Kb)
  459. // Not compatible with ALEXA_SUPPORT at the moment
  460. #endif
  461. #ifndef SSDP_DEVICE_TYPE
  462. #define SSDP_DEVICE_TYPE "upnp:rootdevice"
  463. //#define SSDP_DEVICE_TYPE "urn:schemas-upnp-org:device:BinaryLight:1"
  464. #endif
  465. // -----------------------------------------------------------------------------
  466. // SPIFFS
  467. // -----------------------------------------------------------------------------
  468. #ifndef SPIFFS_SUPPORT
  469. #define SPIFFS_SUPPORT 0 // Do not add support for SPIFFS by default
  470. #endif
  471. // -----------------------------------------------------------------------------
  472. // OTA
  473. // -----------------------------------------------------------------------------
  474. #ifndef OTA_PORT
  475. #define OTA_PORT 8266 // OTA port
  476. #endif
  477. #ifndef OTA_MQTT_SUPPORT
  478. #define OTA_MQTT_SUPPORT 0 // No support by default
  479. #endif
  480. #define OTA_GITHUB_FP "D7:9F:07:61:10:B3:92:93:E3:49:AC:89:84:5B:03:80:C1:9E:2F:8B"
  481. // -----------------------------------------------------------------------------
  482. // NOFUSS
  483. // -----------------------------------------------------------------------------
  484. #ifndef NOFUSS_SUPPORT
  485. #define NOFUSS_SUPPORT 0 // Do not enable support for NoFuss by default (12.65Kb)
  486. #endif
  487. #ifndef NOFUSS_ENABLED
  488. #define NOFUSS_ENABLED 0 // Do not perform NoFUSS updates by default
  489. #endif
  490. #ifndef NOFUSS_SERVER
  491. #define NOFUSS_SERVER "" // Default NoFuss Server
  492. #endif
  493. #ifndef NOFUSS_INTERVAL
  494. #define NOFUSS_INTERVAL 3600000 // Check for updates every hour
  495. #endif
  496. // -----------------------------------------------------------------------------
  497. // UART <-> MQTT
  498. // -----------------------------------------------------------------------------
  499. #ifndef UART_MQTT_SUPPORT
  500. #define UART_MQTT_SUPPORT 0 // No support by default
  501. #endif
  502. #ifndef UART_MQTT_USE_SOFT
  503. #define UART_MQTT_USE_SOFT 0 // Use SoftwareSerial
  504. #endif
  505. #ifndef UART_MQTT_HW_PORT
  506. #define UART_MQTT_HW_PORT Serial // Hardware serial port (if UART_MQTT_USE_SOFT == 0)
  507. #endif
  508. #ifndef UART_MQTT_RX_PIN
  509. #define UART_MQTT_RX_PIN 4 // RX PIN (if UART_MQTT_USE_SOFT == 1)
  510. #endif
  511. #ifndef UART_MQTT_TX_PIN
  512. #define UART_MQTT_TX_PIN 5 // TX PIN (if UART_MQTT_USE_SOFT == 1)
  513. #endif
  514. #ifndef UART_MQTT_BAUDRATE
  515. #define UART_MQTT_BAUDRATE 115200 // Serial speed
  516. #endif
  517. #ifndef UART_MQTT_TERMINATION
  518. #define UART_MQTT_TERMINATION '\n' // Termination character
  519. #endif
  520. #define UART_MQTT_BUFFER_SIZE 100 // UART buffer size
  521. // -----------------------------------------------------------------------------
  522. // MQTT
  523. // -----------------------------------------------------------------------------
  524. #ifndef MQTT_SUPPORT
  525. #define MQTT_SUPPORT 1 // MQTT support (22.38Kb async, 12.48Kb sync)
  526. #endif
  527. #ifndef MQTT_USE_ASYNC
  528. #define MQTT_USE_ASYNC 1 // Use AysncMQTTClient (1) or PubSubClient (0)
  529. #endif
  530. // MQTT OVER SSL
  531. // Using MQTT over SSL works pretty well but generates problems with the web interface.
  532. // It could be a good idea to use it in conjuntion with WEB_SUPPORT=0.
  533. // Requires ASYNC_TCP_SSL_ENABLED to 1 and ESP8266 Arduino Core 2.4.0.
  534. //
  535. // You can use SSL with MQTT_USE_ASYNC=1 (AsyncMqttClient library)
  536. // but you might experience hiccups on the web interface, so my recommendation is:
  537. // WEB_SUPPORT=0
  538. //
  539. // If you use SSL with MQTT_USE_ASYNC=0 (PubSubClient library)
  540. // you will have to disable all the modules that use ESPAsyncTCP, that is:
  541. // ALEXA_SUPPORT=0, INFLUXDB_SUPPORT=0, TELNET_SUPPORT=0, THINGSPEAK_SUPPORT=0 and WEB_SUPPORT=0
  542. //
  543. // You will need the fingerprint for your MQTT server, example for CloudMQTT:
  544. // $ echo -n | openssl s_client -connect m11.cloudmqtt.com:24055 > cloudmqtt.pem
  545. // $ openssl x509 -noout -in cloudmqtt.pem -fingerprint -sha1
  546. #ifndef MQTT_SSL_ENABLED
  547. #define MQTT_SSL_ENABLED 0 // By default MQTT over SSL will not be enabled
  548. #endif
  549. #ifndef MQTT_SSL_FINGERPRINT
  550. #define MQTT_SSL_FINGERPRINT "" // SSL fingerprint of the server
  551. #endif
  552. #ifndef MQTT_ENABLED
  553. #define MQTT_ENABLED 0 // Do not enable MQTT connection by default
  554. #endif
  555. #ifndef MQTT_AUTOCONNECT
  556. #define MQTT_AUTOCONNECT 1 // If enabled and MDNS_SERVER_SUPPORT=1 will perform an autodiscover and
  557. // autoconnect to the first MQTT broker found if none defined
  558. #endif
  559. #ifndef MQTT_SERVER
  560. #define MQTT_SERVER "" // Default MQTT broker address
  561. #endif
  562. #ifndef MQTT_USER
  563. #define MQTT_USER "" // Default MQTT broker usename
  564. #endif
  565. #ifndef MQTT_PASS
  566. #define MQTT_PASS "" // Default MQTT broker password
  567. #endif
  568. #ifndef MQTT_PORT
  569. #define MQTT_PORT 1883 // MQTT broker port
  570. #endif
  571. #ifndef MQTT_TOPIC
  572. #define MQTT_TOPIC "{hostname}" // Default MQTT base topic
  573. #endif
  574. #ifndef MQTT_RETAIN
  575. #define MQTT_RETAIN true // MQTT retain flag
  576. #endif
  577. #ifndef MQTT_QOS
  578. #define MQTT_QOS 0 // MQTT QoS value for all messages
  579. #endif
  580. #ifndef MQTT_KEEPALIVE
  581. #define MQTT_KEEPALIVE 300 // MQTT keepalive value
  582. #endif
  583. #ifndef MQTT_RECONNECT_DELAY_MIN
  584. #define MQTT_RECONNECT_DELAY_MIN 5000 // Try to reconnect in 5 seconds upon disconnection
  585. #endif
  586. #ifndef MQTT_RECONNECT_DELAY_STEP
  587. #define MQTT_RECONNECT_DELAY_STEP 5000 // Increase the reconnect delay in 5 seconds after each failed attempt
  588. #endif
  589. #ifndef MQTT_RECONNECT_DELAY_MAX
  590. #define MQTT_RECONNECT_DELAY_MAX 120000 // Set reconnect time to 2 minutes at most
  591. #endif
  592. #ifndef MQTT_SKIP_RETAINED
  593. #define MQTT_SKIP_RETAINED 1 // Skip retained messages on connection
  594. #endif
  595. #ifndef MQTT_SKIP_TIME
  596. #define MQTT_SKIP_TIME 1000 // Skip messages for 1 second anter connection
  597. #endif
  598. #if THERMOSTAT_SUPPORT == 1
  599. #ifndef MQTT_USE_JSON
  600. #define MQTT_USE_JSON 1 // Group messages in a JSON body
  601. #endif
  602. #else
  603. #ifndef MQTT_USE_JSON
  604. #define MQTT_USE_JSON 0 // Don't group messages in a JSON body (default)
  605. #endif
  606. #endif
  607. #ifndef MQTT_USE_JSON_DELAY
  608. #define MQTT_USE_JSON_DELAY 100 // Wait this many ms before grouping messages
  609. #endif
  610. #ifndef MQTT_QUEUE_MAX_SIZE
  611. #define MQTT_QUEUE_MAX_SIZE 20 // Size of the MQTT queue when MQTT_USE_JSON is enabled
  612. #endif
  613. // These are the properties that will be sent when useJson is true
  614. #ifndef MQTT_ENQUEUE_IP
  615. #define MQTT_ENQUEUE_IP 1
  616. #endif
  617. #ifndef MQTT_ENQUEUE_MAC
  618. #define MQTT_ENQUEUE_MAC 1
  619. #endif
  620. #ifndef MQTT_ENQUEUE_HOSTNAME
  621. #define MQTT_ENQUEUE_HOSTNAME 1
  622. #endif
  623. #ifndef MQTT_ENQUEUE_DATETIME
  624. #define MQTT_ENQUEUE_DATETIME 1
  625. #endif
  626. #ifndef MQTT_ENQUEUE_MESSAGE_ID
  627. #define MQTT_ENQUEUE_MESSAGE_ID 1
  628. #endif
  629. // These particles will be concatenated to the MQTT_TOPIC base to form the actual topic
  630. #define MQTT_TOPIC_JSON "data"
  631. #define MQTT_TOPIC_ACTION "action"
  632. #define MQTT_TOPIC_RELAY "relay"
  633. #define MQTT_TOPIC_LED "led"
  634. #define MQTT_TOPIC_BUTTON "button"
  635. #define MQTT_TOPIC_IP "ip"
  636. #define MQTT_TOPIC_SSID "ssid"
  637. #define MQTT_TOPIC_VERSION "version"
  638. #define MQTT_TOPIC_UPTIME "uptime"
  639. #define MQTT_TOPIC_DATETIME "datetime"
  640. #define MQTT_TOPIC_FREEHEAP "freeheap"
  641. #define MQTT_TOPIC_VCC "vcc"
  642. #define MQTT_TOPIC_STATUS "status"
  643. #define MQTT_TOPIC_MAC "mac"
  644. #define MQTT_TOPIC_RSSI "rssi"
  645. #define MQTT_TOPIC_MESSAGE_ID "id"
  646. #define MQTT_TOPIC_APP "app"
  647. #define MQTT_TOPIC_INTERVAL "interval"
  648. #define MQTT_TOPIC_HOSTNAME "host"
  649. #define MQTT_TOPIC_DESCRIPTION "desc"
  650. #define MQTT_TOPIC_TIME "time"
  651. #define MQTT_TOPIC_RFOUT "rfout"
  652. #define MQTT_TOPIC_RFIN "rfin"
  653. #define MQTT_TOPIC_RFLEARN "rflearn"
  654. #define MQTT_TOPIC_RFRAW "rfraw"
  655. #define MQTT_TOPIC_UARTIN "uartin"
  656. #define MQTT_TOPIC_UARTOUT "uartout"
  657. #define MQTT_TOPIC_LOADAVG "loadavg"
  658. #define MQTT_TOPIC_BOARD "board"
  659. #define MQTT_TOPIC_PULSE "pulse"
  660. #define MQTT_TOPIC_SPEED "speed"
  661. #define MQTT_TOPIC_IRIN "irin"
  662. #define MQTT_TOPIC_IROUT "irout"
  663. #define MQTT_TOPIC_OTA "ota"
  664. // Light module
  665. #define MQTT_TOPIC_CHANNEL "channel"
  666. #define MQTT_TOPIC_COLOR_RGB "rgb"
  667. #define MQTT_TOPIC_COLOR_HSV "hsv"
  668. #define MQTT_TOPIC_ANIM_MODE "anim_mode"
  669. #define MQTT_TOPIC_ANIM_SPEED "anim_speed"
  670. #define MQTT_TOPIC_BRIGHTNESS "brightness"
  671. #define MQTT_TOPIC_MIRED "mired"
  672. #define MQTT_TOPIC_KELVIN "kelvin"
  673. #define MQTT_TOPIC_TRANSITION "transition"
  674. // Thermostat module
  675. #define MQTT_TOPIC_HOLD_TEMP "hold_temp"
  676. #define MQTT_TOPIC_HOLD_TEMP_MIN "min"
  677. #define MQTT_TOPIC_HOLD_TEMP_MAX "max"
  678. #define MQTT_TOPIC_REMOTE_TEMP "remote_temp"
  679. #define MQTT_TOPIC_ASK_TEMP_RANGE "ask_temp_range"
  680. #define MQTT_TOPIC_NOTIFY_TEMP_RANGE_MIN "notify_temp_range_min"
  681. #define MQTT_TOPIC_NOTIFY_TEMP_RANGE_MAX "notify_temp_range_max"
  682. #define MQTT_STATUS_ONLINE "1" // Value for the device ON message
  683. #define MQTT_STATUS_OFFLINE "0" // Value for the device OFF message (will)
  684. #define MQTT_ACTION_RESET "reboot" // RESET MQTT topic particle
  685. #define MQTT_MESSAGE_ID_SHIFT 1000 // Store MQTT message id into EEPROM every these many
  686. // Custom get and set postfixes
  687. // Use something like "/status" or "/set", with leading slash
  688. // Since 1.9.0 the default value is "" for getter and "/set" for setter
  689. #ifndef MQTT_GETTER
  690. #define MQTT_GETTER ""
  691. #endif
  692. #ifndef MQTT_SETTER
  693. #define MQTT_SETTER "/set"
  694. #endif
  695. // -----------------------------------------------------------------------------
  696. // BROKER
  697. // -----------------------------------------------------------------------------
  698. #ifndef BROKER_SUPPORT
  699. #define BROKER_SUPPORT 1 // The broker is a poor-man's pubsub manager
  700. #endif
  701. // -----------------------------------------------------------------------------
  702. // SETTINGS
  703. // -----------------------------------------------------------------------------
  704. #ifndef SETTINGS_AUTOSAVE
  705. #define SETTINGS_AUTOSAVE 1 // Autosave settings or force manual commit
  706. #endif
  707. #define SETTINGS_MAX_LIST_COUNT 10 // Maximum index for settings lists
  708. // -----------------------------------------------------------------------------
  709. // LIGHT
  710. // -----------------------------------------------------------------------------
  711. // LIGHT_PROVIDER_DIMMER can have from 1 to 5 different channels.
  712. // They have to be defined for each device in the hardware.h file.
  713. // If 3 or more channels first 3 will be considered RGB.
  714. // Usual configurations are:
  715. // 1 channels => W
  716. // 2 channels => WW
  717. // 3 channels => RGB
  718. // 4 channels => RGBW
  719. // 5 channels => RGBWW
  720. #ifndef LIGHT_SAVE_ENABLED
  721. #define LIGHT_SAVE_ENABLED 1 // Light channel values saved by default after each change
  722. #endif
  723. #ifndef LIGHT_COMMS_DELAY
  724. #define LIGHT_COMMS_DELAY 100 // Delay communication after light update (in ms)
  725. #endif
  726. #ifndef LIGHT_SAVE_DELAY
  727. #define LIGHT_SAVE_DELAY 5 // Persist color after 5 seconds to avoid wearing out
  728. #endif
  729. #ifndef LIGHT_MAX_PWM
  730. #if LIGHT_PROVIDER == LIGHT_PROVIDER_MY92XX
  731. #define LIGHT_MAX_PWM 255
  732. #endif
  733. #if LIGHT_PROVIDER == LIGHT_PROVIDER_DIMMER
  734. #define LIGHT_MAX_PWM 10000 // 10000 * 200ns => 2 kHz
  735. #endif
  736. #endif // LIGHT_MAX_PWM
  737. #ifndef LIGHT_LIMIT_PWM
  738. #define LIGHT_LIMIT_PWM LIGHT_MAX_PWM // Limit PWM to this value (prevent 100% power)
  739. #endif
  740. #ifndef LIGHT_MAX_VALUE
  741. #define LIGHT_MAX_VALUE 255 // Maximum light value
  742. #endif
  743. #ifndef LIGHT_MAX_BRIGHTNESS
  744. #define LIGHT_MAX_BRIGHTNESS 255 // Maximun brightness value
  745. #endif
  746. #define LIGHT_MIN_MIREDS 153 // Default to the Philips Hue value that HA also use.
  747. #define LIGHT_MAX_MIREDS 500 // https://developers.meethue.com/documentation/core-concepts
  748. #ifndef LIGHT_STEP
  749. #define LIGHT_STEP 32 // Step size
  750. #endif
  751. #ifndef LIGHT_USE_COLOR
  752. #define LIGHT_USE_COLOR 1 // Use 3 first channels as RGB
  753. #endif
  754. #ifndef LIGHT_USE_WHITE
  755. #define LIGHT_USE_WHITE 0 // Use the 4th channel as (Warm-)White LEDs
  756. #endif
  757. #ifndef LIGHT_USE_CCT
  758. #define LIGHT_USE_CCT 0 // Use the 5th channel as Coldwhite LEDs, LIGHT_USE_WHITE must be 1.
  759. #endif
  760. // Used when LIGHT_USE_WHITE AND LIGHT_USE_CCT is 1 - (1000000/Kelvin = MiReds)
  761. // Warning! Don't change this yet, NOT FULLY IMPLEMENTED!
  762. #define LIGHT_COLDWHITE_MIRED 153 // Coldwhite Strip, Value must be __BELOW__ W2!! (Default: 6535 Kelvin/153 MiRed)
  763. #define LIGHT_WARMWHITE_MIRED 500 // Warmwhite Strip, Value must be __ABOVE__ W1!! (Default: 2000 Kelvin/500 MiRed)
  764. #ifndef LIGHT_USE_GAMMA
  765. #define LIGHT_USE_GAMMA 0 // Use gamma correction for color channels
  766. #endif
  767. #ifndef LIGHT_USE_CSS
  768. #define LIGHT_USE_CSS 1 // Use CSS style to report colors (1=> "#FF0000", 0=> "255,0,0")
  769. #endif
  770. #ifndef LIGHT_USE_RGB
  771. #define LIGHT_USE_RGB 0 // Use RGB color selector (1=> RGB, 0=> HSV)
  772. #endif
  773. #ifndef LIGHT_WHITE_FACTOR
  774. #define LIGHT_WHITE_FACTOR 1 // When using LIGHT_USE_WHITE with uneven brightness LEDs,
  775. // this factor is used to scale the white channel to match brightness
  776. #endif
  777. #ifndef LIGHT_USE_TRANSITIONS
  778. #define LIGHT_USE_TRANSITIONS 1 // Transitions between colors
  779. #endif
  780. #ifndef LIGHT_TRANSITION_STEP
  781. #define LIGHT_TRANSITION_STEP 10 // Time in millis between each transtion step
  782. #endif
  783. #ifndef LIGHT_TRANSITION_TIME
  784. #define LIGHT_TRANSITION_TIME 500 // Time in millis from color to color
  785. #endif
  786. // -----------------------------------------------------------------------------
  787. // DOMOTICZ
  788. // -----------------------------------------------------------------------------
  789. #ifndef DOMOTICZ_SUPPORT
  790. #define DOMOTICZ_SUPPORT MQTT_SUPPORT // Build with domoticz (if MQTT) support (1.72Kb)
  791. #endif
  792. #define DOMOTICZ_ENABLED 0 // Disable domoticz by default
  793. #define DOMOTICZ_IN_TOPIC "domoticz/in" // Default subscription topic
  794. #define DOMOTICZ_OUT_TOPIC "domoticz/out" // Default publication topic
  795. // -----------------------------------------------------------------------------
  796. // HOME ASSISTANT
  797. // -----------------------------------------------------------------------------
  798. #ifndef HOMEASSISTANT_SUPPORT
  799. #define HOMEASSISTANT_SUPPORT MQTT_SUPPORT // Build with home assistant support (if MQTT, 1.64Kb)
  800. #endif
  801. #ifndef HOMEASSISTANT_ENABLED
  802. #define HOMEASSISTANT_ENABLED 0 // Integration not enabled by default
  803. #endif
  804. #ifndef HOMEASSISTANT_PREFIX
  805. #define HOMEASSISTANT_PREFIX "homeassistant" // Default MQTT prefix
  806. #endif
  807. #ifndef HOMEASSISTANT_PAYLOAD_ON
  808. #define HOMEASSISTANT_PAYLOAD_ON "1" // Payload for ON and available messages
  809. #endif
  810. #ifndef HOMEASSISTANT_PAYLOAD_OFF
  811. #define HOMEASSISTANT_PAYLOAD_OFF "0" // Payload for OFF and unavailable messages
  812. #endif
  813. #ifndef HOMEASSISTANT_PAYLOAD_AVAILABLE
  814. #define HOMEASSISTANT_PAYLOAD_AVAILABLE "1" // Payload for available messages
  815. #endif
  816. #ifndef HOMEASSISTANT_PAYLOAD_NOT_AVAILABLE
  817. #define HOMEASSISTANT_PAYLOAD_NOT_AVAILABLE "0" // Payload for available messages
  818. #endif
  819. // -----------------------------------------------------------------------------
  820. // INFLUXDB
  821. // -----------------------------------------------------------------------------
  822. #ifndef INFLUXDB_SUPPORT
  823. #define INFLUXDB_SUPPORT 0 // Disable InfluxDB support by default (4.38Kb)
  824. #endif
  825. #ifndef INFLUXDB_ENABLED
  826. #define INFLUXDB_ENABLED 0 // InfluxDB disabled by default
  827. #endif
  828. #ifndef INFLUXDB_HOST
  829. #define INFLUXDB_HOST "" // Default server
  830. #endif
  831. #ifndef INFLUXDB_PORT
  832. #define INFLUXDB_PORT 8086 // Default InfluxDB port
  833. #endif
  834. #ifndef INFLUXDB_DATABASE
  835. #define INFLUXDB_DATABASE "" // Default database
  836. #endif
  837. #ifndef INFLUXDB_USERNAME
  838. #define INFLUXDB_USERNAME "" // Default username
  839. #endif
  840. #ifndef INFLUXDB_PASSWORD
  841. #define INFLUXDB_PASSWORD "" // Default password
  842. #endif
  843. // -----------------------------------------------------------------------------
  844. // THINGSPEAK
  845. // -----------------------------------------------------------------------------
  846. #ifndef THINGSPEAK_SUPPORT
  847. #define THINGSPEAK_SUPPORT 1 // Enable Thingspeak support by default (2.56Kb)
  848. #endif
  849. #ifndef THINGSPEAK_ENABLED
  850. #define THINGSPEAK_ENABLED 0 // Thingspeak disabled by default
  851. #endif
  852. #ifndef THINGSPEAK_APIKEY
  853. #define THINGSPEAK_APIKEY "" // Default API KEY
  854. #endif
  855. #ifndef THINGSPEAK_CLEAR_CACHE
  856. #define THINGSPEAK_CLEAR_CACHE 1 // Clear cache after sending values
  857. // Not clearing it will result in latest values for each field being sent every time
  858. #endif
  859. #define THINGSPEAK_USE_ASYNC 1 // Use AsyncClient instead of WiFiClientSecure
  860. // THINGSPEAK OVER SSL
  861. // Using THINGSPEAK over SSL works well but generates problems with the web interface,
  862. // so you should compile it with WEB_SUPPORT to 0.
  863. // When THINGSPEAK_USE_ASYNC is 1, requires ASYNC_TCP_SSL_ENABLED to 1 and ESP8266 Arduino Core 2.4.0.
  864. #define THINGSPEAK_USE_SSL 0 // Use secure connection
  865. #define THINGSPEAK_FINGERPRINT "78 60 18 44 81 35 BF DF 77 84 D4 0A 22 0D 9B 4E 6C DC 57 2C"
  866. #define THINGSPEAK_HOST "api.thingspeak.com"
  867. #if THINGSPEAK_USE_SSL
  868. #define THINGSPEAK_PORT 443
  869. #else
  870. #define THINGSPEAK_PORT 80
  871. #endif
  872. #define THINGSPEAK_URL "/update"
  873. #define THINGSPEAK_MIN_INTERVAL 15000 // Minimum interval between POSTs (in millis)
  874. #define THINGSPEAK_FIELDS 8 // Number of fields
  875. #ifndef THINGSPEAK_TRIES
  876. #define THINGSPEAK_TRIES 3 // Number of tries when sending data (minimum 1)
  877. #endif
  878. // -----------------------------------------------------------------------------
  879. // SCHEDULER
  880. // -----------------------------------------------------------------------------
  881. #ifndef SCHEDULER_SUPPORT
  882. #define SCHEDULER_SUPPORT 1 // Enable scheduler (1.77Kb)
  883. #endif
  884. #ifndef SCHEDULER_MAX_SCHEDULES
  885. #define SCHEDULER_MAX_SCHEDULES 10 // Max schedules alowed
  886. #endif
  887. // -----------------------------------------------------------------------------
  888. // NTP
  889. // -----------------------------------------------------------------------------
  890. #ifndef NTP_SUPPORT
  891. #define NTP_SUPPORT 1 // Build with NTP support by default (6.78Kb)
  892. #endif
  893. #ifndef NTP_SERVER
  894. #define NTP_SERVER "pool.ntp.org" // Default NTP server
  895. #endif
  896. #ifndef NTP_TIMEOUT
  897. #define NTP_TIMEOUT 1000 // Set NTP request timeout to 2 seconds (issue #452)
  898. #endif
  899. #ifndef NTP_TIME_OFFSET
  900. #define NTP_TIME_OFFSET 60 // Default timezone offset (GMT+1)
  901. #endif
  902. #ifndef NTP_DAY_LIGHT
  903. #define NTP_DAY_LIGHT 1 // Enable daylight time saving by default
  904. #endif
  905. #ifndef NTP_SYNC_INTERVAL
  906. #define NTP_SYNC_INTERVAL 60 // NTP initial check every minute
  907. #endif
  908. #ifndef NTP_UPDATE_INTERVAL
  909. #define NTP_UPDATE_INTERVAL 1800 // NTP check every 30 minutes
  910. #endif
  911. #ifndef NTP_START_DELAY
  912. #define NTP_START_DELAY 1000 // Delay NTP start 1 second
  913. #endif
  914. #ifndef NTP_DST_REGION
  915. #define NTP_DST_REGION 0 // 0 for Europe, 1 for USA (defined in NtpClientLib)
  916. #endif
  917. #ifndef NTP_WAIT_FOR_SYNC
  918. #define NTP_WAIT_FOR_SYNC 1 // Do not report any datetime until NTP sync'ed
  919. #endif
  920. // -----------------------------------------------------------------------------
  921. // ALEXA
  922. // -----------------------------------------------------------------------------
  923. // This setting defines whether Alexa support should be built into the firmware
  924. #ifndef ALEXA_SUPPORT
  925. #define ALEXA_SUPPORT 1 // Enable Alexa support by default (10.84Kb)
  926. #endif
  927. // This is default value for the alexaEnabled setting that defines whether
  928. // this device should be discoberable and respond to Alexa commands.
  929. // Both ALEXA_SUPPORT and alexaEnabled should be 1 for Alexa support to work.
  930. #ifndef ALEXA_ENABLED
  931. #define ALEXA_ENABLED 1
  932. #endif
  933. // -----------------------------------------------------------------------------
  934. // MQTT RF BRIDGE
  935. // -----------------------------------------------------------------------------
  936. #ifndef RF_SUPPORT
  937. #define RF_SUPPORT 0
  938. #endif
  939. #ifndef RF_DEBOUNCE
  940. #define RF_DEBOUNCE 500
  941. #endif
  942. #ifndef RF_LEARN_TIMEOUT
  943. #define RF_LEARN_TIMEOUT 60000
  944. #endif
  945. #ifndef RF_SEND_TIMES
  946. #define RF_SEND_TIMES 4 // How many times to send the message
  947. #endif
  948. #ifndef RF_SEND_DELAY
  949. #define RF_SEND_DELAY 500 // Interval between sendings in ms
  950. #endif
  951. #ifndef RF_RECEIVE_DELAY
  952. #define RF_RECEIVE_DELAY 500 // Interval between recieving in ms (avoid debouncing)
  953. #endif
  954. // Enable RCSwitch support
  955. // Also possible to use with SONOFF RF BRIDGE, thanks to @wildwiz
  956. // https://github.com/xoseperez/espurna/wiki/Hardware-Itead-Sonoff-RF-Bridge---Direct-Hack
  957. #ifndef RFB_DIRECT
  958. #define RFB_DIRECT 0
  959. #endif
  960. #ifndef RFB_RX_PIN
  961. #define RFB_RX_PIN GPIO_NONE
  962. #endif
  963. #ifndef RFB_TX_PIN
  964. #define RFB_TX_PIN GPIO_NONE
  965. #endif
  966. // -----------------------------------------------------------------------------
  967. // IR Bridge
  968. // -----------------------------------------------------------------------------
  969. #ifndef IR_SUPPORT
  970. #define IR_SUPPORT 0 // Do not build with IR support by default (10.25Kb)
  971. #endif
  972. //#define IR_RX_PIN 5 // GPIO the receiver is connected to
  973. //#define IR_TX_PIN 4 // GPIO the transmitter is connected to
  974. #ifndef IR_USE_RAW
  975. #define IR_USE_RAW 0 // Use raw codes
  976. #endif
  977. #ifndef IR_BUFFER_SIZE
  978. #define IR_BUFFER_SIZE 1024
  979. #endif
  980. #ifndef IR_TIMEOUT
  981. #define IR_TIMEOUT 15U
  982. #endif
  983. #ifndef IR_REPEAT
  984. #define IR_REPEAT 1
  985. #endif
  986. #ifndef IR_DELAY
  987. #define IR_DELAY 100
  988. #endif
  989. #ifndef IR_DEBOUNCE
  990. #define IR_DEBOUNCE 500 // IR debounce time in milliseconds
  991. #endif
  992. #ifndef IR_BUTTON_SET
  993. #define IR_BUTTON_SET 0 // IR button set to use (see below)
  994. #endif
  995. // -----------------------------------------------------------------------------
  996. // Remote Buttons SET 1 (for the original Remote shipped with the controller)
  997. #if IR_BUTTON_SET == 1
  998. /*
  999. +------+------+------+------+
  1000. | UP | Down | OFF | ON |
  1001. +------+------+------+------+
  1002. | R | G | B | W |
  1003. +------+------+------+------+
  1004. | 1 | 2 | 3 |FLASH |
  1005. +------+------+------+------+
  1006. | 4 | 5 | 6 |STROBE|
  1007. +------+------+------+------+
  1008. | 7 | 8 | 9 | FADE |
  1009. +------+------+------+------+
  1010. | 10 | 11 | 12 |SMOOTH|
  1011. +------+------+------+------+
  1012. */
  1013. #define IR_BUTTON_COUNT 24
  1014. const uint32_t IR_BUTTON[IR_BUTTON_COUNT][3] PROGMEM = {
  1015. { 0xFF906F, IR_BUTTON_MODE_BRIGHTER, 1 },
  1016. { 0xFFB847, IR_BUTTON_MODE_BRIGHTER, 0 },
  1017. { 0xFFF807, IR_BUTTON_MODE_STATE, 0 },
  1018. { 0xFFB04F, IR_BUTTON_MODE_STATE, 1 },
  1019. { 0xFF9867, IR_BUTTON_MODE_RGB, 0xFF0000 },
  1020. { 0xFFD827, IR_BUTTON_MODE_RGB, 0x00FF00 },
  1021. { 0xFF8877, IR_BUTTON_MODE_RGB, 0x0000FF },
  1022. { 0xFFA857, IR_BUTTON_MODE_RGB, 0xFFFFFF },
  1023. { 0xFFE817, IR_BUTTON_MODE_RGB, 0xD13A01 },
  1024. { 0xFF48B7, IR_BUTTON_MODE_RGB, 0x00E644 },
  1025. { 0xFF6897, IR_BUTTON_MODE_RGB, 0x0040A7 },
  1026. { 0xFFB24D, IR_BUTTON_MODE_EFFECT, LIGHT_EFFECT_FLASH },
  1027. { 0xFF02FD, IR_BUTTON_MODE_RGB, 0xE96F2A },
  1028. { 0xFF32CD, IR_BUTTON_MODE_RGB, 0x00BEBF },
  1029. { 0xFF20DF, IR_BUTTON_MODE_RGB, 0x56406F },
  1030. { 0xFF00FF, IR_BUTTON_MODE_EFFECT, LIGHT_EFFECT_STROBE },
  1031. { 0xFF50AF, IR_BUTTON_MODE_RGB, 0xEE9819 },
  1032. { 0xFF7887, IR_BUTTON_MODE_RGB, 0x00799A },
  1033. { 0xFF708F, IR_BUTTON_MODE_RGB, 0x944E80 },
  1034. { 0xFF58A7, IR_BUTTON_MODE_EFFECT, LIGHT_EFFECT_FADE },
  1035. { 0xFF38C7, IR_BUTTON_MODE_RGB, 0xFFFF00 },
  1036. { 0xFF28D7, IR_BUTTON_MODE_RGB, 0x0060A1 },
  1037. { 0xFFF00F, IR_BUTTON_MODE_RGB, 0xEF45AD },
  1038. { 0xFF30CF, IR_BUTTON_MODE_EFFECT, LIGHT_EFFECT_SMOOTH }
  1039. };
  1040. #endif
  1041. //Remote Buttons SET 2 (another identical IR Remote shipped with another controller)
  1042. #if IR_BUTTON_SET == 2
  1043. /*
  1044. +------+------+------+------+
  1045. | UP | Down | OFF | ON |
  1046. +------+------+------+------+
  1047. | R | G | B | W |
  1048. +------+------+------+------+
  1049. | 1 | 2 | 3 |FLASH |
  1050. +------+------+------+------+
  1051. | 4 | 5 | 6 |STROBE|
  1052. +------+------+------+------+
  1053. | 7 | 8 | 9 | FADE |
  1054. +------+------+------+------+
  1055. | 10 | 11 | 12 |SMOOTH|
  1056. +------+------+------+------+
  1057. */
  1058. #define IR_BUTTON_COUNT 24
  1059. const unsigned long IR_BUTTON[IR_BUTTON_COUNT][3] PROGMEM = {
  1060. { 0xFF00FF, IR_BUTTON_MODE_BRIGHTER, 1 },
  1061. { 0xFF807F, IR_BUTTON_MODE_BRIGHTER, 0 },
  1062. { 0xFF40BF, IR_BUTTON_MODE_STATE, 0 },
  1063. { 0xFFC03F, IR_BUTTON_MODE_STATE, 1 },
  1064. { 0xFF20DF, IR_BUTTON_MODE_RGB, 0xFF0000 },
  1065. { 0xFFA05F, IR_BUTTON_MODE_RGB, 0x00FF00 },
  1066. { 0xFF609F, IR_BUTTON_MODE_RGB, 0x0000FF },
  1067. { 0xFFE01F, IR_BUTTON_MODE_RGB, 0xFFFFFF },
  1068. { 0xFF10EF, IR_BUTTON_MODE_RGB, 0xD13A01 },
  1069. { 0xFF906F, IR_BUTTON_MODE_RGB, 0x00E644 },
  1070. { 0xFF50AF, IR_BUTTON_MODE_RGB, 0x0040A7 },
  1071. { 0xFFD02F, IR_BUTTON_MODE_EFFECT, LIGHT_EFFECT_FLASH },
  1072. { 0xFF30CF, IR_BUTTON_MODE_RGB, 0xE96F2A },
  1073. { 0xFFB04F, IR_BUTTON_MODE_RGB, 0x00BEBF },
  1074. { 0xFF708F, IR_BUTTON_MODE_RGB, 0x56406F },
  1075. { 0xFFF00F, IR_BUTTON_MODE_EFFECT, LIGHT_EFFECT_STROBE },
  1076. { 0xFF08F7, IR_BUTTON_MODE_RGB, 0xEE9819 },
  1077. { 0xFF8877, IR_BUTTON_MODE_RGB, 0x00799A },
  1078. { 0xFF48B7, IR_BUTTON_MODE_RGB, 0x944E80 },
  1079. { 0xFFC837, IR_BUTTON_MODE_EFFECT, LIGHT_EFFECT_FADE },
  1080. { 0xFF28D7, IR_BUTTON_MODE_RGB, 0xFFFF00 },
  1081. { 0xFFA857, IR_BUTTON_MODE_RGB, 0x0060A1 },
  1082. { 0xFF6897, IR_BUTTON_MODE_RGB, 0xEF45AD },
  1083. { 0xFFE817, IR_BUTTON_MODE_EFFECT, LIGHT_EFFECT_SMOOTH }
  1084. };
  1085. #endif
  1086. //Remote Buttons SET 3 (samsung AA59-00608A 8 Toggle Buttons for generic 8CH module)
  1087. #if IR_BUTTON_SET == 3
  1088. /*
  1089. +------+------+------+
  1090. | 1 | 2 | 3 |
  1091. +------+------+------+
  1092. | 4 | 5 | 6 |
  1093. +------+------+------+
  1094. | 7 | 8 | 9 |
  1095. +------+------+------+
  1096. | | 0 | |
  1097. +------+------+------+
  1098. */
  1099. #define IR_BUTTON_COUNT 10
  1100. const unsigned long IR_BUTTON[IR_BUTTON_COUNT][3] PROGMEM = {
  1101. { 0xE0E020DF, IR_BUTTON_MODE_TOGGLE, 0 }, // Toggle Relay #0
  1102. { 0xE0E0A05F, IR_BUTTON_MODE_TOGGLE, 1 }, // Toggle Relay #1
  1103. { 0xE0E0609F, IR_BUTTON_MODE_TOGGLE, 2 }, // Toggle Relay #2
  1104. { 0xE0E010EF, IR_BUTTON_MODE_TOGGLE, 3 }, // Toggle Relay #3
  1105. { 0xE0E0906F, IR_BUTTON_MODE_TOGGLE, 4 }, // Toggle Relay #4
  1106. { 0xE0E050AF, IR_BUTTON_MODE_TOGGLE, 5 }, // Toggle Relay #5
  1107. { 0xE0E030CF, IR_BUTTON_MODE_TOGGLE, 6 }, // Toggle Relay #6
  1108. { 0xE0E0B04F, IR_BUTTON_MODE_TOGGLE, 7 } // Toggle Relay #7
  1109. //{ 0xE0E0708F, IR_BUTTON_MODE_TOGGLE, 8 } //Extra Button
  1110. //{ 0xE0E08877, IR_BUTTON_MODE_TOGGLE, 9 } //Extra Button
  1111. };
  1112. #endif
  1113. //Remote Buttons SET 4
  1114. #if IR_BUTTON_SET == 4
  1115. /*
  1116. +------+------+------+
  1117. | OFF | SRC | MUTE |
  1118. +------+------+------+
  1119. ...
  1120. +------+------+------+
  1121. */
  1122. #define IR_BUTTON_COUNT 1
  1123. const unsigned long IR_BUTTON[IR_BUTTON_COUNT][3] PROGMEM = {
  1124. { 0xFFB24D, IR_BUTTON_MODE_TOGGLE, 0 } // Toggle Relay #0
  1125. };
  1126. #endif
  1127. #ifndef IR_BUTTON_COUNT
  1128. #define IR_BUTTON_COUNT 0
  1129. #endif
  1130. //--------------------------------------------------------------------------------
  1131. // Custom RFM69 to MQTT bridge
  1132. // Check http://tinkerman.cat/rfm69-wifi-gateway/
  1133. // Enable support by passing RFM69_SUPPORT=1 build flag
  1134. //--------------------------------------------------------------------------------
  1135. #ifndef RFM69_SUPPORT
  1136. #define RFM69_SUPPORT 0
  1137. #endif
  1138. #ifndef RFM69_MAX_TOPICS
  1139. #define RFM69_MAX_TOPICS 50
  1140. #endif
  1141. #ifndef RFM69_MAX_NODES
  1142. #define RFM69_MAX_NODES 255
  1143. #endif
  1144. #ifndef RFM69_DEFAULT_TOPIC
  1145. #define RFM69_DEFAULT_TOPIC "/rfm69gw/{node}/{key}"
  1146. #endif
  1147. #ifndef RFM69_NODE_ID
  1148. #define RFM69_NODE_ID 1
  1149. #endif
  1150. #ifndef RFM69_GATEWAY_ID
  1151. #define RFM69_GATEWAY_ID 1
  1152. #endif
  1153. #ifndef RFM69_NETWORK_ID
  1154. #define RFM69_NETWORK_ID 164
  1155. #endif
  1156. #ifndef RFM69_PROMISCUOUS
  1157. #define RFM69_PROMISCUOUS 0
  1158. #endif
  1159. #ifndef RFM69_PROMISCUOUS_SENDS
  1160. #define RFM69_PROMISCUOUS_SENDS 0
  1161. #endif
  1162. #ifndef RFM69_FREQUENCY
  1163. #define RFM69_FREQUENCY RF69_868MHZ
  1164. #endif
  1165. #ifndef RFM69_ENCRYPTKEY
  1166. #define RFM69_ENCRYPTKEY "fibonacci0123456"
  1167. #endif
  1168. #ifndef RFM69_CS_PIN
  1169. #define RFM69_CS_PIN SS
  1170. #endif
  1171. #ifndef RFM69_IRQ_PIN
  1172. #define RFM69_IRQ_PIN 5
  1173. #endif
  1174. #ifndef RFM69_RESET_PIN
  1175. #define RFM69_RESET_PIN 7
  1176. #endif
  1177. #ifndef RFM69_IS_RFM69HW
  1178. #define RFM69_IS_RFM69HW 0
  1179. #endif