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.

1039 lines
41 KiB

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