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.

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