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.

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