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.

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