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.

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