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.

1210 lines
40 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
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. #ifndef ADMIN_PASS
  10. #define ADMIN_PASS "fibonacci" // Default password (WEB, OTA, WIFI)
  11. #endif
  12. #ifndef USE_PASSWORD
  13. #define USE_PASSWORD 1 // Insecurity caution! Disabling this will disable password querying completely.
  14. #endif
  15. #ifndef LOOP_DELAY_TIME
  16. #define LOOP_DELAY_TIME 10 // Delay for this millis in the main loop [0-250]
  17. #endif
  18. //------------------------------------------------------------------------------
  19. // DEBUG
  20. //------------------------------------------------------------------------------
  21. // Serial debug log
  22. #ifndef DEBUG_SERIAL_SUPPORT
  23. #define DEBUG_SERIAL_SUPPORT 1 // Enable serial debug log
  24. #endif
  25. #ifndef DEBUG_PORT
  26. #define DEBUG_PORT Serial // Default debugging port
  27. #endif
  28. #ifndef SERIAL_BAUDRATE
  29. #define SERIAL_BAUDRATE 115200 // Default baudrate
  30. #endif
  31. #ifndef DEBUG_ADD_TIMESTAMP
  32. #define DEBUG_ADD_TIMESTAMP 1 // Add timestamp to debug messages
  33. // (in millis overflowing every 1000 seconds)
  34. #endif
  35. // Second serial port (used for RX)
  36. #ifndef SERIAL_RX_ENABLED
  37. #define SERIAL_RX_ENABLED 0 // Secondary serial port for RX
  38. #endif
  39. #ifndef SERIAL_RX_PORT
  40. #define SERIAL_RX_PORT Serial // This setting is usually defined
  41. // in the hardware.h file for those
  42. // boards that require it
  43. #endif
  44. #ifndef SERIAL_RX_BAUDRATE
  45. #define SERIAL_RX_BAUDRATE 115200 // Default baudrate
  46. #endif
  47. //------------------------------------------------------------------------------
  48. // UDP debug log
  49. // To receive the message son the destination computer use nc:
  50. // nc -ul 8113
  51. #ifndef DEBUG_UDP_SUPPORT
  52. #define DEBUG_UDP_SUPPORT 0 // Enable UDP debug log
  53. #endif
  54. #ifndef DEBUG_UDP_IP
  55. #define DEBUG_UDP_IP IPAddress(192, 168, 1, 100)
  56. #endif
  57. #ifndef DEBUG_UDP_PORT
  58. #define DEBUG_UDP_PORT 514
  59. #endif
  60. // If DEBUG_UDP_PORT is set to 514 syslog format is assumed
  61. // (https://tools.ietf.org/html/rfc3164)
  62. // DEBUG_UDP_FAC_PRI is the facility+priority
  63. #define DEBUG_UDP_FAC_PRI (SYSLOG_LOCAL0 | SYSLOG_DEBUG)
  64. //------------------------------------------------------------------------------
  65. #ifndef DEBUG_TELNET_SUPPORT
  66. #define DEBUG_TELNET_SUPPORT 1 // Enable telnet debug log (will only work if TELNET_SUPPORT is also 1)
  67. #endif
  68. //------------------------------------------------------------------------------
  69. #ifndef DEBUG_WEB_SUPPORT
  70. #define DEBUG_WEB_SUPPORT 1 // Enable web debug log (will only work if WEB_SUPPORT is also 1)
  71. #endif
  72. //------------------------------------------------------------------------------
  73. // TELNET
  74. //------------------------------------------------------------------------------
  75. #ifndef TELNET_SUPPORT
  76. #define TELNET_SUPPORT 1 // Enable telnet support by default (3.34Kb)
  77. #endif
  78. #ifndef TELNET_STA
  79. #define TELNET_STA 0 // By default, disallow connections via STA interface
  80. #endif
  81. #define TELNET_PORT 23 // Port to listen to telnet clients
  82. #define TELNET_MAX_CLIENTS 1 // Max number of concurrent telnet clients
  83. //------------------------------------------------------------------------------
  84. // TERMINAL
  85. //------------------------------------------------------------------------------
  86. #ifndef TERMINAL_SUPPORT
  87. #define TERMINAL_SUPPORT 1 // Enable terminal commands (0.97Kb)
  88. #endif
  89. #define TERMINAL_BUFFER_SIZE 128 // Max size for commands commands
  90. //------------------------------------------------------------------------------
  91. // SYSTEM CHECK
  92. //------------------------------------------------------------------------------
  93. #ifndef SYSTEM_CHECK_ENABLED
  94. #define SYSTEM_CHECK_ENABLED 1 // Enable crash check by default
  95. #endif
  96. #ifndef SYSTEM_CHECK_TIME
  97. #define SYSTEM_CHECK_TIME 60000 // The system is considered stable after these many millis
  98. #endif
  99. #ifndef SYSTEM_CHECK_MAX
  100. #define SYSTEM_CHECK_MAX 5 // After this many crashes on boot
  101. // the system is flagged as unstable
  102. #endif
  103. //------------------------------------------------------------------------------
  104. // EEPROM
  105. //------------------------------------------------------------------------------
  106. #define EEPROM_SIZE 4096 // EEPROM size in bytes
  107. #define EEPROM_RELAY_STATUS 0 // Address for the relay status (1 byte)
  108. #define EEPROM_ENERGY_COUNT 1 // Address for the energy counter (4 bytes)
  109. #define EEPROM_CUSTOM_RESET 5 // Address for the reset reason (1 byte)
  110. #define EEPROM_CRASH_COUNTER 6 // Address for the crash counter (1 byte)
  111. #define EEPROM_MESSAGE_ID 7 // Address for the MQTT message id (4 bytes)
  112. #define EEPROM_DATA_END 11 // End of custom EEPROM data block
  113. //------------------------------------------------------------------------------
  114. // HEARTBEAT
  115. //------------------------------------------------------------------------------
  116. #ifndef HEARTBEAT_ENABLED
  117. #define HEARTBEAT_ENABLED 1
  118. #endif
  119. #ifndef HEARTBEAT_INTERVAL
  120. #define HEARTBEAT_INTERVAL 300000 // Interval between heartbeat messages (in ms)
  121. #endif
  122. #define UPTIME_OVERFLOW 4294967295 // Uptime overflow value
  123. // Topics that will be reported in heartbeat
  124. #define HEARTBEAT_REPORT_STATUS 1
  125. #define HEARTBEAT_REPORT_IP 1
  126. #define HEARTBEAT_REPORT_MAC 1
  127. #define HEARTBEAT_REPORT_RSSI 1
  128. #define HEARTBEAT_REPORT_UPTIME 1
  129. #define HEARTBEAT_REPORT_DATETIME 1
  130. #define HEARTBEAT_REPORT_FREEHEAP 1
  131. #define HEARTBEAT_REPORT_VCC 1
  132. #define HEARTBEAT_REPORT_RELAY 1
  133. #define HEARTBEAT_REPORT_LIGHT 1
  134. #define HEARTBEAT_REPORT_HOSTNAME 1
  135. #define HEARTBEAT_REPORT_APP 1
  136. #define HEARTBEAT_REPORT_VERSION 1
  137. #define HEARTBEAT_REPORT_BOARD 1
  138. #define HEARTBEAT_REPORT_INTERVAL 0
  139. //------------------------------------------------------------------------------
  140. // Load average
  141. //------------------------------------------------------------------------------
  142. #ifndef LOADAVG_INTERVAL
  143. #define LOADAVG_INTERVAL 30000 // Interval between calculating load average (in ms)
  144. #endif
  145. #ifndef LOADAVG_REPORT
  146. #define LOADAVG_REPORT 1 // Should we report Load average over MQTT?
  147. #endif
  148. //------------------------------------------------------------------------------
  149. // BUTTON
  150. //------------------------------------------------------------------------------
  151. #ifndef BUTTON_DEBOUNCE_DELAY
  152. #define BUTTON_DEBOUNCE_DELAY 50 // Debounce delay (ms)
  153. #endif
  154. #ifndef BUTTON_DBLCLICK_DELAY
  155. #define BUTTON_DBLCLICK_DELAY 500 // Time in ms to wait for a second (or third...) click
  156. #endif
  157. #ifndef BUTTON_LNGCLICK_DELAY
  158. #define BUTTON_LNGCLICK_DELAY 1000 // Time in ms holding the button down to get a long click
  159. #endif
  160. #ifndef BUTTON_LNGLNGCLICK_DELAY
  161. #define BUTTON_LNGLNGCLICK_DELAY 10000 // Time in ms holding the button down to get a long-long click
  162. #endif
  163. //------------------------------------------------------------------------------
  164. // RELAY
  165. //------------------------------------------------------------------------------
  166. // Default boot mode: 0 means OFF, 1 ON and 2 whatever was before
  167. #ifndef RELAY_BOOT_MODE
  168. #define RELAY_BOOT_MODE RELAY_BOOT_OFF
  169. #endif
  170. // 0 means ANY, 1 zero or one and 2 one and only one
  171. #ifndef RELAY_SYNC
  172. #define RELAY_SYNC RELAY_SYNC_ANY
  173. #endif
  174. // Default pulse mode: 0 means no pulses, 1 means normally off, 2 normally on
  175. #ifndef RELAY_PULSE_MODE
  176. #define RELAY_PULSE_MODE RELAY_PULSE_NONE
  177. #endif
  178. // Default pulse time in seconds
  179. #ifndef RELAY_PULSE_TIME
  180. #define RELAY_PULSE_TIME 1.0
  181. #endif
  182. // Relay requests flood protection window - in seconds
  183. #ifndef RELAY_FLOOD_WINDOW
  184. #define RELAY_FLOOD_WINDOW 3
  185. #endif
  186. // Allowed actual relay changes inside requests flood protection window
  187. #ifndef RELAY_FLOOD_CHANGES
  188. #define RELAY_FLOOD_CHANGES 5
  189. #endif
  190. // Pulse with in milliseconds for a latched relay
  191. #ifndef RELAY_LATCHING_PULSE
  192. #define RELAY_LATCHING_PULSE 10
  193. #endif
  194. // Do not save relay state after these many milliseconds
  195. #ifndef RELAY_SAVE_DELAY
  196. #define RELAY_SAVE_DELAY 1000
  197. #endif
  198. // -----------------------------------------------------------------------------
  199. // WIFI
  200. // -----------------------------------------------------------------------------
  201. #ifndef WIFI_CONNECT_TIMEOUT
  202. #define WIFI_CONNECT_TIMEOUT 60000 // Connecting timeout for WIFI in ms
  203. #endif
  204. #ifndef WIFI_RECONNECT_INTERVAL
  205. #define WIFI_RECONNECT_INTERVAL 180000 // If could not connect to WIFI, retry after this time in ms
  206. #endif
  207. #ifndef WIFI_MAX_NETWORKS
  208. #define WIFI_MAX_NETWORKS 5 // Max number of WIFI connection configurations
  209. #endif
  210. #ifndef WIFI_AP_CAPTIVE
  211. #define WIFI_AP_CAPTIVE 1 // Captive portal enabled when in AP mode
  212. #endif
  213. #ifndef WIFI_AP_MODE
  214. #define WIFI_AP_MODE AP_MODE_ALONE
  215. #endif
  216. #ifndef WIFI_SLEEP_MODE
  217. #define WIFI_SLEEP_MODE WIFI_NONE_SLEEP // WIFI_NONE_SLEEP, WIFI_LIGHT_SLEEP or WIFI_MODEM_SLEEP
  218. #endif
  219. #ifndef WIFI_SCAN_NETWORKS
  220. #define WIFI_SCAN_NETWORKS 1 // Perform a network scan before connecting
  221. #endif
  222. // Optional hardcoded configuration (up to 2 networks)
  223. #ifndef WIFI1_SSID
  224. #define WIFI1_SSID ""
  225. #endif
  226. #ifndef WIFI1_PASS
  227. #define WIFI1_PASS ""
  228. #endif
  229. #ifndef WIFI1_IP
  230. #define WIFI1_IP ""
  231. #endif
  232. #ifndef WIFI1_GW
  233. #define WIFI1_GW ""
  234. #endif
  235. #ifndef WIFI1_MASK
  236. #define WIFI1_MASK ""
  237. #endif
  238. #ifndef WIFI1_DNS
  239. #define WIFI1_DNS ""
  240. #endif
  241. #ifndef WIFI2_SSID
  242. #define WIFI2_SSID ""
  243. #endif
  244. #ifndef WIFI2_PASS
  245. #define WIFI2_PASS ""
  246. #endif
  247. #ifndef WIFI2_IP
  248. #define WIFI2_IP ""
  249. #endif
  250. #ifndef WIFI2_GW
  251. #define WIFI2_GW ""
  252. #endif
  253. #ifndef WIFI2_MASK
  254. #define WIFI2_MASK ""
  255. #endif
  256. #ifndef WIFI2_DNS
  257. #define WIFI2_DNS ""
  258. #endif
  259. #ifndef WIFI_RSSI_1M
  260. #define WIFI_RSSI_1M -30 // Calibrate it with your router reading the RSSI at 1m
  261. #endif
  262. #ifndef WIFI_PROPAGATION_CONST
  263. #define WIFI_PROPAGATION_CONST 4 // This is typically something between 2.7 to 4.3 (free space is 2)
  264. #endif
  265. // -----------------------------------------------------------------------------
  266. // WEB
  267. // -----------------------------------------------------------------------------
  268. #ifndef WEB_SUPPORT
  269. #define WEB_SUPPORT 1 // Enable web support (http, api, 121.65Kb)
  270. #endif
  271. #ifndef WEB_EMBEDDED
  272. #define WEB_EMBEDDED 1 // Build the firmware with the web interface embedded in
  273. #endif
  274. // This is not working at the moment!!
  275. // Requires ASYNC_TCP_SSL_ENABLED to 1 and ESP8266 Arduino Core 2.4.0
  276. #ifndef WEB_SSL_ENABLED
  277. #define WEB_SSL_ENABLED 0 // Use HTTPS web interface
  278. #endif
  279. #ifndef WEB_USERNAME
  280. #define WEB_USERNAME "admin" // HTTP username
  281. #endif
  282. #ifndef WEB_FORCE_PASS_CHANGE
  283. #define WEB_FORCE_PASS_CHANGE 1 // Force the user to change the password if default one
  284. #endif
  285. #ifndef WEB_PORT
  286. #define WEB_PORT 80 // HTTP port
  287. #endif
  288. // Defining a WEB_REMOTE_DOMAIN will enable Cross-Origin Resource Sharing (CORS)
  289. // so you will be able to login to this device from another domain. This will allow
  290. // you to manage all ESPurna devices in your local network from a unique installation
  291. // of the web UI. This installation could be in a local server (a Raspberry Pi, for instance)
  292. // or in the Internet. Since the WebUI is just one compressed file with HTML, CSS and JS
  293. // there are no special requirements. Any static web server will do (NGinx, Apache, Lighttpd,...).
  294. // The only requirement is that the resource must be available under this domain.
  295. #define WEB_REMOTE_DOMAIN "http://tinkerman.cat"
  296. // -----------------------------------------------------------------------------
  297. // WEBSOCKETS
  298. // -----------------------------------------------------------------------------
  299. // This will only be enabled if WEB_SUPPORT is 1 (this is the default value)
  300. #ifndef WS_AUTHENTICATION
  301. #define WS_AUTHENTICATION 1 // WS authentication ON by default (see #507)
  302. #endif
  303. #ifndef WS_BUFFER_SIZE
  304. #define WS_BUFFER_SIZE 5 // Max number of secured websocket connections
  305. #endif
  306. #ifndef WS_TIMEOUT
  307. #define WS_TIMEOUT 1800000 // Timeout for secured websocket
  308. #endif
  309. #ifndef WS_UPDATE_INTERVAL
  310. #define WS_UPDATE_INTERVAL 30000 // Update clients every 30 seconds
  311. #endif
  312. // -----------------------------------------------------------------------------
  313. // API
  314. // -----------------------------------------------------------------------------
  315. // This will only be enabled if WEB_SUPPORT is 1 (this is the default value)
  316. #ifndef API_ENABLED
  317. #define API_ENABLED 0 // Do not enable API by default
  318. #endif
  319. #ifndef API_BUFFER_SIZE
  320. #define API_BUFFER_SIZE 15 // Size of the buffer for HTTP GET API responses
  321. #endif
  322. #ifndef API_REAL_TIME_VALUES
  323. #define API_REAL_TIME_VALUES 0 // Show filtered/median values by default (0 => median, 1 => real time)
  324. #endif
  325. // -----------------------------------------------------------------------------
  326. // MDNS / LLMNR / NETBIOS / SSDP
  327. // -----------------------------------------------------------------------------
  328. #ifndef MDNS_SERVER_SUPPORT
  329. #define MDNS_SERVER_SUPPORT 1 // Publish services using mDNS by default (1.48Kb)
  330. #endif
  331. #ifndef MDNS_CLIENT_SUPPORT
  332. #define MDNS_CLIENT_SUPPORT 0 // Resolve mDNS names (3.44Kb)
  333. #endif
  334. #ifndef LLMNR_SUPPORT
  335. #define LLMNR_SUPPORT 0 // Publish device using LLMNR protocol by default (1.95Kb) - requires 2.4.0
  336. #endif
  337. #ifndef NETBIOS_SUPPORT
  338. #define NETBIOS_SUPPORT 0 // Publish device using NetBIOS protocol by default (1.26Kb) - requires 2.4.0
  339. #endif
  340. #ifndef SSDP_SUPPORT
  341. #define SSDP_SUPPORT 0 // Publish device using SSDP protocol by default (4.59Kb)
  342. // Not compatible with ALEXA_SUPPORT at the moment
  343. #endif
  344. #ifndef SSDP_DEVICE_TYPE
  345. #define SSDP_DEVICE_TYPE "upnp:rootdevice"
  346. //#define SSDP_DEVICE_TYPE "urn:schemas-upnp-org:device:BinaryLight:1"
  347. #endif
  348. // -----------------------------------------------------------------------------
  349. // SPIFFS
  350. // -----------------------------------------------------------------------------
  351. #ifndef SPIFFS_SUPPORT
  352. #define SPIFFS_SUPPORT 0 // Do not add support for SPIFFS by default
  353. #endif
  354. // -----------------------------------------------------------------------------
  355. // OTA
  356. // -----------------------------------------------------------------------------
  357. #ifndef OTA_PORT
  358. #define OTA_PORT 8266 // OTA port
  359. #endif
  360. #define OTA_GITHUB_FP "D7:9F:07:61:10:B3:92:93:E3:49:AC:89:84:5B:03:80:C1:9E:2F:8B"
  361. // -----------------------------------------------------------------------------
  362. // NOFUSS
  363. // -----------------------------------------------------------------------------
  364. #ifndef NOFUSS_SUPPORT
  365. #define NOFUSS_SUPPORT 0 // Do not enable support for NoFuss by default (12.65Kb)
  366. #endif
  367. #ifndef NOFUSS_ENABLED
  368. #define NOFUSS_ENABLED 0 // Do not perform NoFUSS updates by default
  369. #endif
  370. #ifndef NOFUSS_SERVER
  371. #define NOFUSS_SERVER "" // Default NoFuss Server
  372. #endif
  373. #ifndef NOFUSS_INTERVAL
  374. #define NOFUSS_INTERVAL 3600000 // Check for updates every hour
  375. #endif
  376. // -----------------------------------------------------------------------------
  377. // UART <-> MQTT
  378. // -----------------------------------------------------------------------------
  379. #ifndef UART_MQTT_SUPPORT
  380. #define UART_MQTT_SUPPORT 0 // No support by default
  381. #endif
  382. #ifndef UART_MQTT_USE_SOFT
  383. #define UART_MQTT_USE_SOFT 0 // Use SoftwareSerial
  384. #endif
  385. #ifndef UART_MQTT_HW_PORT
  386. #define UART_MQTT_HW_PORT Serial // Hardware serial port (if UART_MQTT_USE_SOFT == 0)
  387. #endif
  388. #ifndef UART_MQTT_RX_PIN
  389. #define UART_MQTT_RX_PIN 4 // RX PIN (if UART_MQTT_USE_SOFT == 1)
  390. #endif
  391. #ifndef UART_MQTT_TX_PIN
  392. #define UART_MQTT_TX_PIN 5 // TX PIN (if UART_MQTT_USE_SOFT == 1)
  393. #endif
  394. #ifndef UART_MQTT_BAUDRATE
  395. #define UART_MQTT_BAUDRATE 115200 // Serial speed
  396. #endif
  397. #ifndef UART_MQTT_TERMINATION
  398. #define UART_MQTT_TERMINATION '\n' // Termination character
  399. #endif
  400. #define UART_MQTT_BUFFER_SIZE 100 // UART buffer size
  401. // -----------------------------------------------------------------------------
  402. // MQTT
  403. // -----------------------------------------------------------------------------
  404. #ifndef MQTT_SUPPORT
  405. #define MQTT_SUPPORT 1 // MQTT support (22.38Kb async, 12.48Kb sync)
  406. #endif
  407. #ifndef MQTT_USE_ASYNC
  408. #define MQTT_USE_ASYNC 1 // Use AysncMQTTClient (1) or PubSubClient (0)
  409. #endif
  410. // MQTT OVER SSL
  411. // Using MQTT over SSL works pretty well but generates problems with the web interface.
  412. // It could be a good idea to use it in conjuntion with WEB_SUPPORT=0.
  413. // Requires ASYNC_TCP_SSL_ENABLED to 1 and ESP8266 Arduino Core 2.4.0.
  414. //
  415. // You can use SSL with MQTT_USE_ASYNC=1 (AsyncMqttClient library)
  416. // but you might experience hiccups on the web interface, so my recommendation is:
  417. // WEB_SUPPORT=0
  418. //
  419. // If you use SSL with MQTT_USE_ASYNC=0 (PubSubClient library)
  420. // you will have to disable all the modules that use ESPAsyncTCP, that is:
  421. // ALEXA_SUPPORT=0, INFLUXDB_SUPPORT=0, TELNET_SUPPORT=0, THINGSPEAK_SUPPORT=0 and WEB_SUPPORT=0
  422. //
  423. // You will need the fingerprint for your MQTT server, example for CloudMQTT:
  424. // $ echo -n | openssl s_client -connect m11.cloudmqtt.com:24055 > cloudmqtt.pem
  425. // $ openssl x509 -noout -in cloudmqtt.pem -fingerprint -sha1
  426. #ifndef MQTT_SSL_ENABLED
  427. #define MQTT_SSL_ENABLED 0 // By default MQTT over SSL will not be enabled
  428. #endif
  429. #ifndef MQTT_SSL_FINGERPRINT
  430. #define MQTT_SSL_FINGERPRINT "" // SSL fingerprint of the server
  431. #endif
  432. #ifndef MQTT_ENABLED
  433. #define MQTT_ENABLED 0 // Do not enable MQTT connection by default
  434. #endif
  435. #ifndef MQTT_AUTOCONNECT
  436. #define MQTT_AUTOCONNECT 1 // If enabled and MDNS_SERVER_SUPPORT=1 will perform an autodiscover and
  437. // autoconnect to the first MQTT broker found if none defined
  438. #endif
  439. #ifndef MQTT_SERVER
  440. #define MQTT_SERVER "" // Default MQTT broker address
  441. #endif
  442. #ifndef MQTT_USER
  443. #define MQTT_USER "" // Default MQTT broker usename
  444. #endif
  445. #ifndef MQTT_PASS
  446. #define MQTT_PASS "" // Default MQTT broker password
  447. #endif
  448. #ifndef MQTT_PORT
  449. #define MQTT_PORT 1883 // MQTT broker port
  450. #endif
  451. #ifndef MQTT_TOPIC
  452. #define MQTT_TOPIC "{hostname}" // Default MQTT base topic
  453. #endif
  454. #ifndef MQTT_RETAIN
  455. #define MQTT_RETAIN true // MQTT retain flag
  456. #endif
  457. #ifndef MQTT_QOS
  458. #define MQTT_QOS 0 // MQTT QoS value for all messages
  459. #endif
  460. #ifndef MQTT_KEEPALIVE
  461. #define MQTT_KEEPALIVE 300 // MQTT keepalive value
  462. #endif
  463. #ifndef MQTT_RECONNECT_DELAY_MIN
  464. #define MQTT_RECONNECT_DELAY_MIN 5000 // Try to reconnect in 5 seconds upon disconnection
  465. #endif
  466. #ifndef MQTT_RECONNECT_DELAY_STEP
  467. #define MQTT_RECONNECT_DELAY_STEP 5000 // Increase the reconnect delay in 5 seconds after each failed attempt
  468. #endif
  469. #ifndef MQTT_RECONNECT_DELAY_MAX
  470. #define MQTT_RECONNECT_DELAY_MAX 120000 // Set reconnect time to 2 minutes at most
  471. #endif
  472. #ifndef MQTT_SKIP_RETAINED
  473. #define MQTT_SKIP_RETAINED 1 // Skip retained messages on connection
  474. #endif
  475. #ifndef MQTT_SKIP_TIME
  476. #define MQTT_SKIP_TIME 1000 // Skip messages for 1 second anter connection
  477. #endif
  478. #ifndef MQTT_USE_JSON
  479. #define MQTT_USE_JSON 0 // Group messages in a JSON body
  480. #endif
  481. #ifndef MQTT_USE_JSON_DELAY
  482. #define MQTT_USE_JSON_DELAY 100 // Wait this many ms before grouping messages
  483. #endif
  484. #ifndef MQTT_QUEUE_MAX_SIZE
  485. #define MQTT_QUEUE_MAX_SIZE 20 // Size of the MQTT queue when MQTT_USE_JSON is enabled
  486. #endif
  487. // These are the properties that will be sent when useJson is true
  488. #ifndef MQTT_ENQUEUE_IP
  489. #define MQTT_ENQUEUE_IP 1
  490. #endif
  491. #ifndef MQTT_ENQUEUE_MAC
  492. #define MQTT_ENQUEUE_MAC 1
  493. #endif
  494. #ifndef MQTT_ENQUEUE_HOSTNAME
  495. #define MQTT_ENQUEUE_HOSTNAME 1
  496. #endif
  497. #ifndef MQTT_ENQUEUE_DATETIME
  498. #define MQTT_ENQUEUE_DATETIME 1
  499. #endif
  500. #ifndef MQTT_ENQUEUE_MESSAGE_ID
  501. #define MQTT_ENQUEUE_MESSAGE_ID 1
  502. #endif
  503. // These particles will be concatenated to the MQTT_TOPIC base to form the actual topic
  504. #define MQTT_TOPIC_JSON "data"
  505. #define MQTT_TOPIC_ACTION "action"
  506. #define MQTT_TOPIC_RELAY "relay"
  507. #define MQTT_TOPIC_LED "led"
  508. #define MQTT_TOPIC_BUTTON "button"
  509. #define MQTT_TOPIC_IP "ip"
  510. #define MQTT_TOPIC_VERSION "version"
  511. #define MQTT_TOPIC_UPTIME "uptime"
  512. #define MQTT_TOPIC_DATETIME "datetime"
  513. #define MQTT_TOPIC_FREEHEAP "freeheap"
  514. #define MQTT_TOPIC_VCC "vcc"
  515. #define MQTT_TOPIC_STATUS "status"
  516. #define MQTT_TOPIC_MAC "mac"
  517. #define MQTT_TOPIC_RSSI "rssi"
  518. #define MQTT_TOPIC_MESSAGE_ID "id"
  519. #define MQTT_TOPIC_APP "app"
  520. #define MQTT_TOPIC_INTERVAL "interval"
  521. #define MQTT_TOPIC_HOSTNAME "host"
  522. #define MQTT_TOPIC_TIME "time"
  523. #define MQTT_TOPIC_RFOUT "rfout"
  524. #define MQTT_TOPIC_RFIN "rfin"
  525. #define MQTT_TOPIC_RFLEARN "rflearn"
  526. #define MQTT_TOPIC_RFRAW "rfraw"
  527. #define MQTT_TOPIC_UARTIN "uartin"
  528. #define MQTT_TOPIC_UARTOUT "uartout"
  529. #define MQTT_TOPIC_LOADAVG "loadavg"
  530. #define MQTT_TOPIC_BOARD "board"
  531. // Light module
  532. #define MQTT_TOPIC_CHANNEL "channel"
  533. #define MQTT_TOPIC_COLOR_RGB "rgb"
  534. #define MQTT_TOPIC_COLOR_HSV "hsv"
  535. #define MQTT_TOPIC_ANIM_MODE "anim_mode"
  536. #define MQTT_TOPIC_ANIM_SPEED "anim_speed"
  537. #define MQTT_TOPIC_BRIGHTNESS "brightness"
  538. #define MQTT_TOPIC_MIRED "mired"
  539. #define MQTT_TOPIC_KELVIN "kelvin"
  540. #define MQTT_STATUS_ONLINE "1" // Value for the device ON message
  541. #define MQTT_STATUS_OFFLINE "0" // Value for the device OFF message (will)
  542. #define MQTT_ACTION_RESET "reboot" // RESET MQTT topic particle
  543. #define MQTT_MESSAGE_ID_SHIFT 1000 // Store MQTT message id into EEPROM every these many
  544. // Custom get and set postfixes
  545. // Use something like "/status" or "/set", with leading slash
  546. // Since 1.9.0 the default value is "" for getter and "/set" for setter
  547. #ifndef MQTT_GETTER
  548. #define MQTT_GETTER ""
  549. #endif
  550. #ifndef MQTT_SETTER
  551. #define MQTT_SETTER "/set"
  552. #endif
  553. // -----------------------------------------------------------------------------
  554. // BROKER
  555. // -----------------------------------------------------------------------------
  556. #ifndef BROKER_SUPPORT
  557. #define BROKER_SUPPORT 1 // The broker is a poor-man's pubsub manager
  558. #endif
  559. // -----------------------------------------------------------------------------
  560. // SETTINGS
  561. // -----------------------------------------------------------------------------
  562. #ifndef SETTINGS_AUTOSAVE
  563. #define SETTINGS_AUTOSAVE 1 // Autosave settings o force manual commit
  564. #endif
  565. #define SETTINGS_MAX_LIST_COUNT 10 // Maximum index for settings lists
  566. // -----------------------------------------------------------------------------
  567. // LIGHT
  568. // -----------------------------------------------------------------------------
  569. // LIGHT_PROVIDER_DIMMER can have from 1 to 5 different channels.
  570. // They have to be defined for each device in the hardware.h file.
  571. // If 3 or more channels first 3 will be considered RGB.
  572. // Usual configurations are:
  573. // 1 channels => W
  574. // 2 channels => WW
  575. // 3 channels => RGB
  576. // 4 channels => RGBW
  577. // 5 channels => RGBWW
  578. #ifndef LIGHT_SAVE_ENABLED
  579. #define LIGHT_SAVE_ENABLED 1 // Light channel values saved by default after each change
  580. #endif
  581. #ifndef LIGHT_SAVE_DELAY
  582. #define LIGHT_SAVE_DELAY 5 // Persist color after 5 seconds to avoid wearing out
  583. #endif
  584. #ifndef LIGHT_MAX_PWM
  585. #if LIGHT_PROVIDER == LIGHT_PROVIDER_MY92XX
  586. #define LIGHT_MAX_PWM 255
  587. #endif
  588. #if LIGHT_PROVIDER == LIGHT_PROVIDER_DIMMER
  589. #define LIGHT_MAX_PWM 10000 // 5000 * 200ns => 1 kHz
  590. #endif
  591. #endif // LIGHT_MAX_PWM
  592. #ifndef LIGHT_LIMIT_PWM
  593. #define LIGHT_LIMIT_PWM LIGHT_MAX_PWM // Limit PWM to this value (prevent 100% power)
  594. #endif
  595. #ifndef LIGHT_MAX_VALUE
  596. #define LIGHT_MAX_VALUE 255 // Maximum light value
  597. #endif
  598. #ifndef LIGHT_MAX_BRIGHTNESS
  599. #define LIGHT_MAX_BRIGHTNESS 255 // Maximun brightness value
  600. #endif
  601. #define LIGHT_MIN_MIREDS 153 // Default to the Philips Hue value that HA also use.
  602. #define LIGHT_MAX_MIREDS 500 // https://developers.meethue.com/documentation/core-concepts
  603. #ifndef LIGHT_STEP
  604. #define LIGHT_STEP 32 // Step size
  605. #endif
  606. #ifndef LIGHT_USE_COLOR
  607. #define LIGHT_USE_COLOR 1 // Use 3 first channels as RGB
  608. #endif
  609. #ifndef LIGHT_USE_WHITE
  610. #define LIGHT_USE_WHITE 0 // Use the 4th channel as (Warm-)White LEDs
  611. #endif
  612. #ifndef LIGHT_USE_CCT
  613. #define LIGHT_USE_CCT 0 // Use the 5th channel as Coldwhite LEDs, LIGHT_USE_WHITE must be 1.
  614. #endif
  615. // Used when LIGHT_USE_WHITE AND LIGHT_USE_CCT is 1 - (1000000/Kelvin = MiReds)
  616. // Warning! Don't change this yet, NOT FULLY IMPLEMENTED!
  617. #define LIGHT_COLDWHITE_MIRED 153 // Coldwhite Strip, Value must be __BELOW__ W2!! (Default: 6535 Kelvin/153 MiRed)
  618. #define LIGHT_WARMWHITE_MIRED 500 // Warmwhite Strip, Value must be __ABOVE__ W1!! (Default: 2000 Kelvin/500 MiRed)
  619. #ifndef LIGHT_USE_GAMMA
  620. #define LIGHT_USE_GAMMA 0 // Use gamma correction for color channels
  621. #endif
  622. #ifndef LIGHT_USE_CSS
  623. #define LIGHT_USE_CSS 1 // Use CSS style to report colors (1=> "#FF0000", 0=> "255,0,0")
  624. #endif
  625. #ifndef LIGHT_USE_RGB
  626. #define LIGHT_USE_RGB 0 // Use RGB color selector (1=> RGB, 0=> HSV)
  627. #endif
  628. #ifndef LIGHT_WHITE_FACTOR
  629. #define LIGHT_WHITE_FACTOR 1 // When using LIGHT_USE_WHITE with uneven brightness LEDs,
  630. // this factor is used to scale the white channel to match brightness
  631. #endif
  632. #ifndef LIGHT_USE_TRANSITIONS
  633. #define LIGHT_USE_TRANSITIONS 1 // Transitions between colors
  634. #endif
  635. #ifndef LIGHT_TRANSITION_STEP
  636. #define LIGHT_TRANSITION_STEP 10 // Time in millis between each transtion step
  637. #endif
  638. #ifndef LIGHT_TRANSITION_TIME
  639. #define LIGHT_TRANSITION_TIME 500 // Time in millis from color to color
  640. #endif
  641. // -----------------------------------------------------------------------------
  642. // DOMOTICZ
  643. // -----------------------------------------------------------------------------
  644. #ifndef DOMOTICZ_SUPPORT
  645. #define DOMOTICZ_SUPPORT MQTT_SUPPORT // Build with domoticz (if MQTT) support (1.72Kb)
  646. #endif
  647. #define DOMOTICZ_ENABLED 0 // Disable domoticz by default
  648. #define DOMOTICZ_IN_TOPIC "domoticz/in" // Default subscription topic
  649. #define DOMOTICZ_OUT_TOPIC "domoticz/out" // Default publication topic
  650. // -----------------------------------------------------------------------------
  651. // HOME ASSISTANT
  652. // -----------------------------------------------------------------------------
  653. #ifndef HOMEASSISTANT_SUPPORT
  654. #define HOMEASSISTANT_SUPPORT MQTT_SUPPORT // Build with home assistant support (if MQTT, 1.64Kb)
  655. #endif
  656. #define HOMEASSISTANT_ENABLED 0 // Integration not enabled by default
  657. #define HOMEASSISTANT_PREFIX "homeassistant" // Default MQTT prefix
  658. // -----------------------------------------------------------------------------
  659. // INFLUXDB
  660. // -----------------------------------------------------------------------------
  661. #ifndef INFLUXDB_SUPPORT
  662. #define INFLUXDB_SUPPORT 0 // Disable InfluxDB support by default (4.38Kb)
  663. #endif
  664. #ifndef INFLUXDB_ENABLED
  665. #define INFLUXDB_ENABLED 0 // InfluxDB disabled by default
  666. #endif
  667. #ifndef INFLUXDB_HOST
  668. #define INFLUXDB_HOST "" // Default server
  669. #endif
  670. #ifndef INFLUXDB_PORT
  671. #define INFLUXDB_PORT 8086 // Default InfluxDB port
  672. #endif
  673. #ifndef INFLUXDB_DATABASE
  674. #define INFLUXDB_DATABASE "" // Default database
  675. #endif
  676. #ifndef INFLUXDB_USERNAME
  677. #define INFLUXDB_USERNAME "" // Default username
  678. #endif
  679. #ifndef INFLUXDB_PASSWORD
  680. #define INFLUXDB_PASSWORD "" // Default password
  681. #endif
  682. // -----------------------------------------------------------------------------
  683. // THINGSPEAK
  684. // -----------------------------------------------------------------------------
  685. #ifndef THINGSPEAK_SUPPORT
  686. #define THINGSPEAK_SUPPORT 1 // Enable Thingspeak support by default (2.56Kb)
  687. #endif
  688. #ifndef THINGSPEAK_ENABLED
  689. #define THINGSPEAK_ENABLED 0 // Thingspeak disabled by default
  690. #endif
  691. #ifndef THINGSPEAK_APIKEY
  692. #define THINGSPEAK_APIKEY "" // Default API KEY
  693. #endif
  694. #define THINGSPEAK_USE_ASYNC 1 // Use AsyncClient instead of WiFiClientSecure
  695. // THINGSPEAK OVER SSL
  696. // Using THINGSPEAK over SSL works well but generates problems with the web interface,
  697. // so you should compile it with WEB_SUPPORT to 0.
  698. // When THINGSPEAK_USE_ASYNC is 1, requires ASYNC_TCP_SSL_ENABLED to 1 and ESP8266 Arduino Core 2.4.0.
  699. #define THINGSPEAK_USE_SSL 0 // Use secure connection
  700. #define THINGSPEAK_FINGERPRINT "78 60 18 44 81 35 BF DF 77 84 D4 0A 22 0D 9B 4E 6C DC 57 2C"
  701. #define THINGSPEAK_HOST "api.thingspeak.com"
  702. #if THINGSPEAK_USE_SSL
  703. #define THINGSPEAK_PORT 443
  704. #else
  705. #define THINGSPEAK_PORT 80
  706. #endif
  707. #define THINGSPEAK_URL "/update"
  708. #define THINGSPEAK_MIN_INTERVAL 15000 // Minimum interval between POSTs (in millis)
  709. // -----------------------------------------------------------------------------
  710. // SCHEDULER
  711. // -----------------------------------------------------------------------------
  712. #ifndef SCHEDULER_SUPPORT
  713. #define SCHEDULER_SUPPORT 1 // Enable scheduler (1.77Kb)
  714. #endif
  715. #ifndef SCHEDULER_MAX_SCHEDULES
  716. #define SCHEDULER_MAX_SCHEDULES 10 // Max schedules alowed
  717. #endif
  718. // -----------------------------------------------------------------------------
  719. // NTP
  720. // -----------------------------------------------------------------------------
  721. #ifndef NTP_SUPPORT
  722. #define NTP_SUPPORT 1 // Build with NTP support by default (6.78Kb)
  723. #endif
  724. #ifndef NTP_SERVER
  725. #define NTP_SERVER "pool.ntp.org" // Default NTP server
  726. #endif
  727. #ifndef NTP_TIMEOUT
  728. #define NTP_TIMEOUT 1000 // Set NTP request timeout to 2 seconds (issue #452)
  729. #endif
  730. #ifndef NTP_TIME_OFFSET
  731. #define NTP_TIME_OFFSET 60 // Default timezone offset (GMT+1)
  732. #endif
  733. #ifndef NTP_DAY_LIGHT
  734. #define NTP_DAY_LIGHT 1 // Enable daylight time saving by default
  735. #endif
  736. #ifndef NTP_SYNC_INTERVAL
  737. #define NTP_SYNC_INTERVAL 60 // NTP initial check every minute
  738. #endif
  739. #ifndef NTP_UPDATE_INTERVAL
  740. #define NTP_UPDATE_INTERVAL 1800 // NTP check every 30 minutes
  741. #endif
  742. #ifndef NTP_START_DELAY
  743. #define NTP_START_DELAY 1000 // Delay NTP start 1 second
  744. #endif
  745. #ifndef NTP_DST_REGION
  746. #define NTP_DST_REGION 0 // 0 for Europe, 1 for USA (defined in NtpClientLib)
  747. #endif
  748. // -----------------------------------------------------------------------------
  749. // ALEXA
  750. // -----------------------------------------------------------------------------
  751. // This setting defines whether Alexa support should be built into the firmware
  752. #ifndef ALEXA_SUPPORT
  753. #define ALEXA_SUPPORT 1 // Enable Alexa support by default (10.84Kb)
  754. #endif
  755. // This is default value for the alexaEnabled setting that defines whether
  756. // this device should be discoberable and respond to Alexa commands.
  757. // Both ALEXA_SUPPORT and alexaEnabled should be 1 for Alexa support to work.
  758. #ifndef ALEXA_ENABLED
  759. #define ALEXA_ENABLED 1
  760. #endif
  761. // -----------------------------------------------------------------------------
  762. // RFBRIDGE
  763. // This module is not compatible with RF_SUPPORT=1
  764. // -----------------------------------------------------------------------------
  765. #ifndef RF_SEND_TIMES
  766. #define RF_SEND_TIMES 4 // How many times to send the message
  767. #endif
  768. #ifndef RF_SEND_DELAY
  769. #define RF_SEND_DELAY 500 // Interval between sendings in ms
  770. #endif
  771. #ifndef RF_RECEIVE_DELAY
  772. #define RF_RECEIVE_DELAY 500 // Interval between recieving in ms (avoid debouncing)
  773. #endif
  774. #ifndef RF_RAW_SUPPORT
  775. #define RF_RAW_SUPPORT 0 // RF raw codes require a specific firmware for the EFM8BB1
  776. // https://github.com/rhx/RF-Bridge-EFM8BB1
  777. #endif
  778. // -----------------------------------------------------------------------------
  779. // IR
  780. // -----------------------------------------------------------------------------
  781. #ifndef IR_SUPPORT
  782. #define IR_SUPPORT 0 // Do not build with IR support by default (10.25Kb)
  783. #endif
  784. #ifndef IR_PIN
  785. #define IR_PIN 4 // IR LED
  786. #endif
  787. // 24 Buttons Set of the IR Remote
  788. #ifndef IR_BUTTON_SET
  789. #define IR_BUTTON_SET 1 // IR button set to use (see below)
  790. #endif
  791. //Remote Buttons SET 1 (for the original Remote shipped with the controller)
  792. #if IR_SUPPORT
  793. #if IR_BUTTON_SET == 1
  794. /*
  795. +------+------+------+------+
  796. | UP | Down | OFF | ON |
  797. +------+------+------+------+
  798. | R | G | B | W |
  799. +------+------+------+------+
  800. | 1 | 2 | 3 |FLASH |
  801. +------+------+------+------+
  802. | 4 | 5 | 6 |STROBE|
  803. +------+------+------+------+
  804. | 7 | 8 | 9 | FADE |
  805. +------+------+------+------+
  806. | 10 | 11 | 12 |SMOOTH|
  807. +------+------+------+------+
  808. */
  809. #define IR_BUTTON_COUNT 24
  810. const unsigned long IR_BUTTON[IR_BUTTON_COUNT][3] PROGMEM = {
  811. { 0xFF906F, IR_BUTTON_MODE_BRIGHTER, 1 },
  812. { 0xFFB847, IR_BUTTON_MODE_BRIGHTER, 0 },
  813. { 0xFFF807, IR_BUTTON_MODE_STATE, 0 },
  814. { 0xFFB04F, IR_BUTTON_MODE_STATE, 1 },
  815. { 0xFF9867, IR_BUTTON_MODE_RGB, 0xFF0000 },
  816. { 0xFFD827, IR_BUTTON_MODE_RGB, 0x00FF00 },
  817. { 0xFF8877, IR_BUTTON_MODE_RGB, 0x0000FF },
  818. { 0xFFA857, IR_BUTTON_MODE_RGB, 0xFFFFFF },
  819. { 0xFFE817, IR_BUTTON_MODE_RGB, 0xD13A01 },
  820. { 0xFF48B7, IR_BUTTON_MODE_RGB, 0x00E644 },
  821. { 0xFF6897, IR_BUTTON_MODE_RGB, 0x0040A7 },
  822. { 0xFFB24D, IR_BUTTON_MODE_EFFECT, LIGHT_EFFECT_FLASH },
  823. { 0xFF02FD, IR_BUTTON_MODE_RGB, 0xE96F2A },
  824. { 0xFF32CD, IR_BUTTON_MODE_RGB, 0x00BEBF },
  825. { 0xFF20DF, IR_BUTTON_MODE_RGB, 0x56406F },
  826. { 0xFF00FF, IR_BUTTON_MODE_EFFECT, LIGHT_EFFECT_STROBE },
  827. { 0xFF50AF, IR_BUTTON_MODE_RGB, 0xEE9819 },
  828. { 0xFF7887, IR_BUTTON_MODE_RGB, 0x00799A },
  829. { 0xFF708F, IR_BUTTON_MODE_RGB, 0x944E80 },
  830. { 0xFF58A7, IR_BUTTON_MODE_EFFECT, LIGHT_EFFECT_FADE },
  831. { 0xFF38C7, IR_BUTTON_MODE_RGB, 0xFFFF00 },
  832. { 0xFF28D7, IR_BUTTON_MODE_RGB, 0x0060A1 },
  833. { 0xFFF00F, IR_BUTTON_MODE_RGB, 0xEF45AD },
  834. { 0xFF30CF, IR_BUTTON_MODE_EFFECT, LIGHT_EFFECT_SMOOTH }
  835. };
  836. #endif
  837. //Remote Buttons SET 2 (another identical IR Remote shipped with another controller)
  838. #if IR_BUTTON_SET == 2
  839. /*
  840. +------+------+------+------+
  841. | UP | Down | OFF | ON |
  842. +------+------+------+------+
  843. | R | G | B | W |
  844. +------+------+------+------+
  845. | 1 | 2 | 3 |FLASH |
  846. +------+------+------+------+
  847. | 4 | 5 | 6 |STROBE|
  848. +------+------+------+------+
  849. | 7 | 8 | 9 | FADE |
  850. +------+------+------+------+
  851. | 10 | 11 | 12 |SMOOTH|
  852. +------+------+------+------+
  853. */
  854. #define IR_BUTTON_COUNT 24
  855. const unsigned long IR_BUTTON[IR_BUTTON_COUNT][3] PROGMEM = {
  856. { 0xFF00FF, IR_BUTTON_MODE_BRIGHTER, 1 },
  857. { 0xFF807F, IR_BUTTON_MODE_BRIGHTER, 0 },
  858. { 0xFF40BF, IR_BUTTON_MODE_STATE, 0 },
  859. { 0xFFC03F, IR_BUTTON_MODE_STATE, 1 },
  860. { 0xFF20DF, IR_BUTTON_MODE_RGB, 0xFF0000 },
  861. { 0xFFA05F, IR_BUTTON_MODE_RGB, 0x00FF00 },
  862. { 0xFF609F, IR_BUTTON_MODE_RGB, 0x0000FF },
  863. { 0xFFE01F, IR_BUTTON_MODE_RGB, 0xFFFFFF },
  864. { 0xFF10EF, IR_BUTTON_MODE_RGB, 0xD13A01 },
  865. { 0xFF906F, IR_BUTTON_MODE_RGB, 0x00E644 },
  866. { 0xFF50AF, IR_BUTTON_MODE_RGB, 0x0040A7 },
  867. { 0xFFD02F, IR_BUTTON_MODE_EFFECT, LIGHT_EFFECT_FLASH },
  868. { 0xFF30CF, IR_BUTTON_MODE_RGB, 0xE96F2A },
  869. { 0xFFB04F, IR_BUTTON_MODE_RGB, 0x00BEBF },
  870. { 0xFF708F, IR_BUTTON_MODE_RGB, 0x56406F },
  871. { 0xFFF00F, IR_BUTTON_MODE_EFFECT, LIGHT_EFFECT_STROBE },
  872. { 0xFF08F7, IR_BUTTON_MODE_RGB, 0xEE9819 },
  873. { 0xFF8877, IR_BUTTON_MODE_RGB, 0x00799A },
  874. { 0xFF48B7, IR_BUTTON_MODE_RGB, 0x944E80 },
  875. { 0xFFC837, IR_BUTTON_MODE_EFFECT, LIGHT_EFFECT_FADE },
  876. { 0xFF28D7, IR_BUTTON_MODE_RGB, 0xFFFF00 },
  877. { 0xFFA857, IR_BUTTON_MODE_RGB, 0x0060A1 },
  878. { 0xFF6897, IR_BUTTON_MODE_RGB, 0xEF45AD },
  879. { 0xFFE817, IR_BUTTON_MODE_EFFECT, LIGHT_EFFECT_SMOOTH }
  880. };
  881. #endif
  882. //Remote Buttons SET 3 (samsung AA59-00608A 8 Toggle Buttons for generic 8CH module)
  883. #if IR_BUTTON_SET == 3
  884. /*
  885. +------+------+------+
  886. | 1 | 2 | 3 |
  887. +------+------+------+
  888. | 4 | 5 | 6 |
  889. +------+------+------+
  890. | 7 | 8 | 9 |
  891. +------+------+------+
  892. | | 0 | |
  893. +------+------+------+
  894. */
  895. #define IR_BUTTON_COUNT 10
  896. const unsigned long IR_BUTTON[IR_BUTTON_COUNT][3] PROGMEM = {
  897. { 0xE0E020DF, IR_BUTTON_MODE_TOGGLE, 0 }, // Toggle Relay #0
  898. { 0xE0E0A05F, IR_BUTTON_MODE_TOGGLE, 1 }, // Toggle Relay #1
  899. { 0xE0E0609F, IR_BUTTON_MODE_TOGGLE, 2 }, // Toggle Relay #2
  900. { 0xE0E010EF, IR_BUTTON_MODE_TOGGLE, 3 }, // Toggle Relay #3
  901. { 0xE0E0906F, IR_BUTTON_MODE_TOGGLE, 4 }, // Toggle Relay #4
  902. { 0xE0E050AF, IR_BUTTON_MODE_TOGGLE, 5 }, // Toggle Relay #5
  903. { 0xE0E030CF, IR_BUTTON_MODE_TOGGLE, 6 }, // Toggle Relay #6
  904. { 0xE0E0B04F, IR_BUTTON_MODE_TOGGLE, 7 } // Toggle Relay #7
  905. //{ 0xE0E0708F, IR_BUTTON_MODE_TOGGLE, 8 } //Extra Button
  906. //{ 0xE0E08877, IR_BUTTON_MODE_TOGGLE, 9 } //Extra Button
  907. };
  908. #endif
  909. #endif // IR_SUPPORT
  910. //--------------------------------------------------------------------------------
  911. // Custom RF module
  912. // Check http://tinkerman.cat/adding-rf-to-a-non-rf-itead-sonoff/
  913. // Enable support by passing RF_SUPPORT=1 build flag
  914. // This module is not compatible with RFBRIDGE or SONOFF RF
  915. //--------------------------------------------------------------------------------
  916. #ifndef RF_SUPPORT
  917. #define RF_SUPPORT 0
  918. #endif
  919. #ifndef RF_PIN
  920. #define RF_PIN 14
  921. #endif
  922. #define RF_DEBOUNCE 500
  923. #define RF_LEARN_TIMEOUT 60000