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.

1298 lines
43 KiB

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