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.

1005 lines
39 KiB

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