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.

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