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.

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