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.

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