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.

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