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.

562 lines
23 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
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 ADMIN_PASS "fibonacci" // Default password (WEB, OTA, WIFI)
  9. //------------------------------------------------------------------------------
  10. // TELNET
  11. //------------------------------------------------------------------------------
  12. #ifndef TELNET_SUPPORT
  13. #define TELNET_SUPPORT 1 // Enable telnet support by default
  14. #endif
  15. #ifndef TELNET_ONLY_AP
  16. #define TELNET_ONLY_AP 1 // By default, allow only connections via AP interface
  17. #endif
  18. #define TELNET_PORT 23 // Port to listen to telnet clients
  19. #define TELNET_MAX_CLIENTS 1 // Max number of concurrent telnet clients
  20. //------------------------------------------------------------------------------
  21. // DEBUG
  22. //------------------------------------------------------------------------------
  23. // Serial debug log
  24. #ifndef DEBUG_SERIAL_SUPPORT
  25. #define DEBUG_SERIAL_SUPPORT 1 // Enable serial debug log
  26. #endif
  27. #ifndef DEBUG_PORT
  28. #define DEBUG_PORT Serial // Default debugging port
  29. #endif
  30. //------------------------------------------------------------------------------
  31. // UDP debug log
  32. // To receive the message son the destination computer use nc:
  33. // nc -ul 8113
  34. #ifndef DEBUG_UDP_SUPPORT
  35. #define DEBUG_UDP_SUPPORT 0 // Enable UDP debug log
  36. #endif
  37. #define DEBUG_UDP_IP IPAddress(192, 168, 1, 100)
  38. #define DEBUG_UDP_PORT 8113
  39. //------------------------------------------------------------------------------
  40. #ifndef DEBUG_TELNET_SUPPORT
  41. #define DEBUG_TELNET_SUPPORT TELNET_SUPPORT // Enable telnet debug log if telnet is enabled too
  42. #endif
  43. //------------------------------------------------------------------------------
  44. // General debug options and macros
  45. #define DEBUG_MESSAGE_MAX_LENGTH 80
  46. #define DEBUG_SUPPORT DEBUG_SERIAL_SUPPORT || DEBUG_UDP_SUPPORT || DEBUG_TELNET_SUPPORT
  47. #if DEBUG_SUPPORT
  48. #define DEBUG_MSG(...) debugSend(__VA_ARGS__)
  49. #define DEBUG_MSG_P(...) debugSend_P(__VA_ARGS__)
  50. #endif
  51. #ifndef DEBUG_MSG
  52. #define DEBUG_MSG(...)
  53. #define DEBUG_MSG_P(...)
  54. #endif
  55. //------------------------------------------------------------------------------
  56. // TERMINAL
  57. //------------------------------------------------------------------------------
  58. #ifndef TERMINAL_SUPPORT
  59. #define TERMINAL_SUPPORT 1 // Enable terminal commands
  60. #endif
  61. //------------------------------------------------------------------------------
  62. // CRASH
  63. //------------------------------------------------------------------------------
  64. #define CRASH_SAFE_TIME 60000 // The system is considered stable after these many millis
  65. #define CRASH_COUNT_MAX 5 // After this many crashes on boot
  66. // the system is flagged as unstable
  67. //------------------------------------------------------------------------------
  68. // EEPROM
  69. //------------------------------------------------------------------------------
  70. #define EEPROM_SIZE 4096 // EEPROM size in bytes
  71. #define EEPROM_RELAY_STATUS 0 // Address for the relay status (1 byte)
  72. #define EEPROM_ENERGY_COUNT 1 // Address for the energy counter (4 bytes)
  73. #define EEPROM_CUSTOM_RESET 5 // Address for the reset reason (1 byte)
  74. #define EEPROM_CRASH_COUNTER 6 // Address for the crash counter (1 byte)
  75. #define EEPROM_DATA_END 7 // End of custom EEPROM data block
  76. //------------------------------------------------------------------------------
  77. // HEARTBEAT
  78. //------------------------------------------------------------------------------
  79. #define HEARTBEAT_INTERVAL 300000 // Interval between heartbeat messages (in ms)
  80. #define UPTIME_OVERFLOW 4294967295 // Uptime overflow value
  81. // Topics that will be reported in heartbeat
  82. #define HEARTBEAT_REPORT_STATUS 1
  83. #define HEARTBEAT_REPORT_IP 1
  84. #define HEARTBEAT_REPORT_MAC 1
  85. #define HEARTBEAT_REPORT_RSSI 1
  86. #define HEARTBEAT_REPORT_UPTIME 1
  87. #define HEARTBEAT_REPORT_FREEHEAP 1
  88. #define HEARTBEAT_REPORT_VCC 1
  89. #define HEARTBEAT_REPORT_RELAY 1
  90. #define HEARTBEAT_REPORT_LIGHT 1
  91. #define HEARTBEAT_REPORT_HOSTNAME 1
  92. #define HEARTBEAT_REPORT_APP 1
  93. #define HEARTBEAT_REPORT_VERSION 1
  94. #define HEARTBEAT_REPORT_INTERVAL 0
  95. //------------------------------------------------------------------------------
  96. // RESET
  97. //------------------------------------------------------------------------------
  98. #define CUSTOM_RESET_HARDWARE 1 // Reset from hardware button
  99. #define CUSTOM_RESET_WEB 2 // Reset from web interface
  100. #define CUSTOM_RESET_TERMINAL 3 // Reset from terminal
  101. #define CUSTOM_RESET_MQTT 4 // Reset via MQTT
  102. #define CUSTOM_RESET_RPC 5 // Reset via RPC (HTTP)
  103. #define CUSTOM_RESET_OTA 6 // Reset after successful OTA update
  104. #define CUSTOM_RESET_NOFUSS 8 // Reset after successful NOFUSS update
  105. #define CUSTOM_RESET_UPGRADE 9 // Reset after update from web interface
  106. #define CUSTOM_RESET_FACTORY 10 // Factory reset from terminal
  107. #define CUSTOM_RESET_MAX 10
  108. #include <pgmspace.h>
  109. PROGMEM const char custom_reset_hardware[] = "Hardware button";
  110. PROGMEM const char custom_reset_web[] = "Reset from web interface";
  111. PROGMEM const char custom_reset_terminal[] = "Reset from terminal";
  112. PROGMEM const char custom_reset_mqtt[] = "Reset from MQTT";
  113. PROGMEM const char custom_reset_rpc[] = "Reset from RPC";
  114. PROGMEM const char custom_reset_ota[] = "Reset after successful OTA update";
  115. PROGMEM const char custom_reset_nofuss[] = "Reset after successful NoFUSS update";
  116. PROGMEM const char custom_reset_upgrade[] = "Reset after successful web update";
  117. PROGMEM const char custom_reset_factory[] = "Factory reset";
  118. PROGMEM const char* const custom_reset_string[] = {
  119. custom_reset_hardware, custom_reset_web, custom_reset_terminal,
  120. custom_reset_mqtt, custom_reset_rpc, custom_reset_ota,
  121. custom_reset_nofuss, custom_reset_upgrade, custom_reset_factory
  122. };
  123. //------------------------------------------------------------------------------
  124. // BUTTON
  125. //------------------------------------------------------------------------------
  126. #define BUTTON_DEBOUNCE_DELAY 50 // Debounce delay (ms)
  127. #define BUTTON_DBLCLICK_DELAY 500 // Time in ms to wait for a second (or third...) click
  128. #define BUTTON_LNGCLICK_DELAY 1000 // Time in ms holding the button down to get a long click
  129. #define BUTTON_LNGLNGCLICK_DELAY 10000 // Time in ms holding the button down to get a long-long click
  130. #define BUTTON_EVENT_NONE 0
  131. #define BUTTON_EVENT_PRESSED 1
  132. #define BUTTON_EVENT_RELEASED 2
  133. #define BUTTON_EVENT_CLICK 2
  134. #define BUTTON_EVENT_DBLCLICK 3
  135. #define BUTTON_EVENT_LNGCLICK 4
  136. #define BUTTON_EVENT_LNGLNGCLICK 5
  137. #define BUTTON_MODE_NONE 0
  138. #define BUTTON_MODE_TOGGLE 1
  139. #define BUTTON_MODE_ON 2
  140. #define BUTTON_MODE_OFF 3
  141. #define BUTTON_MODE_AP 4
  142. #define BUTTON_MODE_RESET 5
  143. #define BUTTON_MODE_PULSE 6
  144. #define BUTTON_MODE_FACTORY 7
  145. //------------------------------------------------------------------------------
  146. // RELAY
  147. //------------------------------------------------------------------------------
  148. #define RELAY_MODE_OFF 0
  149. #define RELAY_MODE_ON 1
  150. #define RELAY_MODE_SAME 2
  151. #define RELAY_MODE_TOOGLE 3
  152. #define RELAY_TYPE_NORMAL 0
  153. #define RELAY_TYPE_INVERSE 1
  154. #define RELAY_TYPE_LATCHED 2
  155. #define RELAY_SYNC_ANY 0
  156. #define RELAY_SYNC_NONE_OR_ONE 1
  157. #define RELAY_SYNC_ONE 2
  158. #define RELAY_SYNC_SAME 3
  159. #define RELAY_PULSE_NONE 0
  160. #define RELAY_PULSE_OFF 1
  161. #define RELAY_PULSE_ON 2
  162. #define RELAY_PROVIDER_RELAY 0
  163. #define RELAY_PROVIDER_DUAL 1
  164. #define RELAY_PROVIDER_LIGHT 2
  165. #define RELAY_PROVIDER_RFBRIDGE 3
  166. // Pulse time in milliseconds
  167. #define RELAY_PULSE_TIME 1.0
  168. // 0 means OFF, 1 ON and 2 whatever was before
  169. #define RELAY_MODE RELAY_MODE_OFF
  170. // 0 means ANY, 1 zero or one and 2 one and only one
  171. #define RELAY_SYNC RELAY_SYNC_ANY
  172. // 0 means no pulses, 1 means normally off, 2 normally on
  173. #define RELAY_PULSE_MODE RELAY_PULSE_NONE
  174. // Relay requests flood protection window - in seconds
  175. #define RELAY_FLOOD_WINDOW 3
  176. // Allowed actual relay changes inside requests flood protection window
  177. #define RELAY_FLOOD_CHANGES 5
  178. // Pulse with in milliseconds for a latched relay
  179. #define RELAY_LATCHING_PULSE 10
  180. // Do not save relay state after these many milliseconds
  181. #define RELAY_SAVE_DELAY 1000
  182. //------------------------------------------------------------------------------
  183. // I18N
  184. //------------------------------------------------------------------------------
  185. #define TMP_CELSIUS 0
  186. #define TMP_FAHRENHEIT 1
  187. #define TMP_UNITS TMP_CELSIUS // Temperature units (TMP_CELSIUS | TMP_FAHRENHEIT)
  188. //------------------------------------------------------------------------------
  189. // LED
  190. //------------------------------------------------------------------------------
  191. // All defined LEDs in the board can be managed through MQTT
  192. // except the first one when LED_AUTO is set to 1.
  193. // If LED_AUTO is set to 1 the board will a defined LED to show wifi status.
  194. #define LED_AUTO 1
  195. // LED # to use as WIFI status indicator
  196. #ifndef LED_WIFI
  197. #define LED_WIFI 1
  198. #endif
  199. // -----------------------------------------------------------------------------
  200. // WIFI
  201. // -----------------------------------------------------------------------------
  202. #define WIFI_CONNECT_TIMEOUT 30000 // Connecting timeout for WIFI in ms
  203. #define WIFI_RECONNECT_INTERVAL 120000 // If could not connect to WIFI, retry after this time in ms
  204. #define WIFI_MAX_NETWORKS 5 // Max number of WIFI connection configurations
  205. #define WIFI_AP_MODE AP_MODE_ALONE
  206. #ifndef WIFI_GAIN
  207. #define WIFI_GAIN 0 // WiFi gain in dBm from 0 (normal) to 20.5 (max power and consumption)
  208. #endif
  209. // Optional hardcoded configuration (up to 2 different networks)
  210. //#define WIFI1_SSID "..."
  211. //#define WIFI1_PASS "..."
  212. //#define WIFI1_IP "192.168.1.201"
  213. //#define WIFI1_GW "192.168.1.1"
  214. //#define WIFI1_MASK "255.255.255.0"
  215. //#define WIFI1_DNS "8.8.8.8"
  216. //#define WIFI2_SSID "..."
  217. //#define WIFI2_PASS "..."
  218. // -----------------------------------------------------------------------------
  219. // WEB
  220. // -----------------------------------------------------------------------------
  221. #ifndef WEB_SUPPORT
  222. #define WEB_SUPPORT 1 // Enable web support (http, api)
  223. #endif
  224. #ifndef WEB_EMBEDDED
  225. #define WEB_EMBEDDED 1 // Build the firmware with the web interface embedded in
  226. #endif
  227. // This is not working at the moment!!
  228. // Requires ASYNC_TCP_SSL_ENABLED to 1 and ESP8266 Arduino Core staging version.
  229. #define WEB_SSL_ENABLED 0 // Use HTTPS web interface
  230. #define WEB_MODE_NORMAL 0
  231. #define WEB_MODE_PASSWORD 1
  232. #define WEB_USERNAME "admin" // HTTP username
  233. #define WEB_FORCE_PASS_CHANGE 1 // Force the user to change the password if default one
  234. #define WEB_PORT 80 // HTTP port
  235. // -----------------------------------------------------------------------------
  236. // WEBSOCKETS
  237. // -----------------------------------------------------------------------------
  238. // This will only be enabled if WEB_SUPPORT is 1 (this is the default value)
  239. #define WS_BUFFER_SIZE 5 // Max number of secured websocket connections
  240. #define WS_TIMEOUT 1800000 // Timeout for secured websocket
  241. // -----------------------------------------------------------------------------
  242. // API
  243. // -----------------------------------------------------------------------------
  244. // This will only be enabled if WEB_SUPPORT is 1 (this is the default value)
  245. #define API_ENABLED 0 // Do not enable API by default
  246. #define API_BUFFER_SIZE 10 // Size of the buffer for HTTP GET API responses
  247. // -----------------------------------------------------------------------------
  248. // MDNS
  249. // -----------------------------------------------------------------------------
  250. #ifndef MDNS_SUPPORT
  251. #define MDNS_SUPPORT 1 // Enable MDNS by default
  252. #endif
  253. // -----------------------------------------------------------------------------
  254. // SPIFFS
  255. // -----------------------------------------------------------------------------
  256. #ifndef SPIFFS_SUPPORT
  257. #define SPIFFS_SUPPORT 0 // Do not add support for SPIFFS by default
  258. #endif
  259. // -----------------------------------------------------------------------------
  260. // OTA
  261. // -----------------------------------------------------------------------------
  262. #define OTA_PORT 8266 // OTA port
  263. // -----------------------------------------------------------------------------
  264. // NOFUSS
  265. // -----------------------------------------------------------------------------
  266. #ifndef NOFUSS_SUPPORT
  267. #define NOFUSS_SUPPORT 0 // Do not enable support for NoFuss by default
  268. #endif
  269. #define NOFUSS_ENABLED 0 // Do not perform NoFUSS updates by default
  270. #define NOFUSS_SERVER "" // Default NoFuss Server
  271. #define NOFUSS_INTERVAL 3600000 // Check for updates every hour
  272. // -----------------------------------------------------------------------------
  273. // MQTT
  274. // -----------------------------------------------------------------------------
  275. #ifndef MQTT_USE_ASYNC
  276. #define MQTT_USE_ASYNC 1 // Use AysncMQTTClient (1) or PubSubClient (0)
  277. #endif
  278. // MQTT OVER SSL
  279. // Using MQTT over SSL works pretty well but generates problems with the web interface.
  280. // It could be a good idea to use it in conjuntion with WEB_SUPPORT=0.
  281. // Requires ASYNC_TCP_SSL_ENABLED to 1 and ESP8266 Arduino Core staging version.
  282. //
  283. // You can use it with MQTT_USE_ASYNC=1 (AsyncMqttClient library)
  284. // but you might experience hiccups on the web interface, so my recommendation is:
  285. // WEB_SUPPORT=0
  286. //
  287. // If you use it with MQTT_USE_ASYNC=0 (PubSubClient library)
  288. // you will have to disable all the modules that use ESPAsyncTCP, that is:
  289. // ALEXA_SUPPORT=0, INFLUXDB_SUPPORT=0, TELNET_SUPPORT=0 and WEB_SUPPORT=0
  290. //
  291. // You will need the fingerprint for your MQTT server, example for CloudMQTT:
  292. // $ echo -n | openssl s_client -connect m11.cloudmqtt.com:24055 > cloudmqtt.pem
  293. // $ openssl x509 -noout -in cloudmqtt.pem -fingerprint -sha1
  294. #define MQTT_SSL_ENABLED 0 // By default MQTT over SSL will not be enabled
  295. #define MQTT_SSL_FINGERPRINT "" // SSL fingerprint of the server
  296. #define MQTT_ENABLED 0 // Do not enable MQTT connection by default
  297. #define MQTT_AUTOCONNECT 1 // If enabled and MDNS_SUPPORT=1 will perform an autodiscover and
  298. // autoconnect to the first MQTT broker found if none defined
  299. #define MQTT_SERVER "" // Default MQTT broker address
  300. #define MQTT_USER "" // Default MQTT broker usename
  301. #define MQTT_PASS "" // Default MQTT broker password
  302. #define MQTT_PORT 1883 // MQTT broker port
  303. #define MQTT_TOPIC "/test/switch/{identifier}" // Default MQTT base topic
  304. #define MQTT_RETAIN true // MQTT retain flag
  305. #define MQTT_QOS 0 // MQTT QoS value for all messages
  306. #define MQTT_KEEPALIVE 30 // MQTT keepalive value
  307. #define MQTT_RECONNECT_DELAY 10000 // Try to reconnect after 10s
  308. #define MQTT_TRY_INTERVAL 30000 // Timeframe for disconnect retries
  309. #define MQTT_MAX_TRIES 5 // After these many retries during the previous MQTT_TRY_INTERVAL the board will reset
  310. #define MQTT_SKIP_RETAINED 1 // Skip retained messages on connection
  311. #define MQTT_SKIP_TIME 1000 // Skip messages for 1 second anter connection
  312. #define MQTT_USE_JSON 0 // Group messages in a JSON body
  313. #define MQTT_USE_JSON_DELAY 100 // Wait this many ms before grouping messages
  314. // These particles will be concatenated to the MQTT_TOPIC base to form the actual topic
  315. #define MQTT_TOPIC_JSON "data"
  316. #define MQTT_TOPIC_ACTION "action"
  317. #define MQTT_TOPIC_RELAY "relay"
  318. #define MQTT_TOPIC_LED "led"
  319. #define MQTT_TOPIC_BUTTON "button"
  320. #define MQTT_TOPIC_IP "ip"
  321. #define MQTT_TOPIC_VERSION "version"
  322. #define MQTT_TOPIC_UPTIME "uptime"
  323. #define MQTT_TOPIC_FREEHEAP "freeheap"
  324. #define MQTT_TOPIC_VCC "vcc"
  325. #define MQTT_TOPIC_STATUS "status"
  326. #define MQTT_TOPIC_MAC "mac"
  327. #define MQTT_TOPIC_RSSI "rssi"
  328. #define MQTT_TOPIC_APP "app"
  329. #define MQTT_TOPIC_INTERVAL "interval"
  330. #define MQTT_TOPIC_HOSTNAME "host"
  331. #define MQTT_TOPIC_TIME "time"
  332. #define MQTT_TOPIC_ANALOG "analog"
  333. #define MQTT_TOPIC_COUNTER "counter"
  334. #define MQTT_TOPIC_RFOUT "rfout"
  335. #define MQTT_TOPIC_RFIN "rfin"
  336. #define MQTT_TOPIC_RFLEARN "rflearn"
  337. // Lights
  338. #define MQTT_TOPIC_CHANNEL "channel"
  339. #define MQTT_TOPIC_COLOR "color"
  340. #define MQTT_TOPIC_BRIGHTNESS "brightness"
  341. #define MQTT_TOPIC_MIRED "mired"
  342. #define MQTT_TOPIC_KELVIN "kelvin"
  343. #define MQTT_STATUS_ONLINE "1" // Value for the device ON message
  344. #define MQTT_STATUS_OFFLINE "0" // Value for the device OFF message (will)
  345. #define MQTT_ACTION_RESET "reset" // RESET MQTT topic particle
  346. // Internal MQTT events (do not change)
  347. #define MQTT_CONNECT_EVENT 0
  348. #define MQTT_DISCONNECT_EVENT 1
  349. #define MQTT_MESSAGE_EVENT 2
  350. // Custom get and set postfixes
  351. // Use something like "/status" or "/set", with leading slash
  352. // Since 1.9.0 the default value is "" for getter and "/set" for setter
  353. #define MQTT_USE_GETTER ""
  354. #define MQTT_USE_SETTER "/set"
  355. // -----------------------------------------------------------------------------
  356. // SETTINGS
  357. // -----------------------------------------------------------------------------
  358. #ifndef SETTINGS_AUTOSAVE
  359. #define SETTINGS_AUTOSAVE 1 // Autosave settings o force manual commit
  360. #endif
  361. // -----------------------------------------------------------------------------
  362. // I2C
  363. // -----------------------------------------------------------------------------
  364. #ifndef I2C_SUPPORT
  365. #define I2C_SUPPORT 0 // I2C enabled
  366. #endif
  367. #define I2C_SDA_PIN 4 // SDA GPIO
  368. #define I2C_SCL_PIN 14 // SCL GPIO
  369. #define I2C_CLOCK_STRETCH_TIME 200 // BRZO clock stretch time
  370. #define I2C_SCL_FREQUENCY 1000 // BRZO SCL frequency
  371. // -----------------------------------------------------------------------------
  372. // LIGHT
  373. // -----------------------------------------------------------------------------
  374. // Available light providers (do not change)
  375. #define LIGHT_PROVIDER_NONE 0
  376. #define LIGHT_PROVIDER_MY9192 1
  377. #define LIGHT_PROVIDER_DIMMER 2
  378. // LIGHT_PROVIDER_DIMMER can have from 1 to 5 different channels.
  379. // They have to be defined for each device in the hardware.h file.
  380. // If 3 or more channels first 3 will be considered RGB.
  381. // Usual configurations are:
  382. // 1 channels => W
  383. // 2 channels => WW
  384. // 3 channels => RGB
  385. // 4 channels => RGBW
  386. // 5 channels => RGBWW
  387. #define LIGHT_SAVE_DELAY 5 // Persist color after 5 seconds to avoid wearing out
  388. #define LIGHT_PWM_FREQUENCY 1000 // PWM frequency
  389. #define LIGHT_MAX_PWM 4095 // Maximum PWM value
  390. #define LIGHT_MAX_VALUE 255 // Maximum light value
  391. #define LIGHT_MAX_BRIGHTNESS 255 // Maximun brightness value
  392. #define LIGHT_USE_COLOR 1 // Use 3 first channels as RGB
  393. #define LIGHT_USE_WHITE 0 // Use white channel whenever RGB have the same value
  394. #define LIGHT_USE_GAMMA 0 // Use gamma correction for color channels
  395. // -----------------------------------------------------------------------------
  396. // DOMOTICZ
  397. // -----------------------------------------------------------------------------
  398. #ifndef DOMOTICZ_SUPPORT
  399. #define DOMOTICZ_SUPPORT 1 // Build with domoticz support
  400. #endif
  401. #define DOMOTICZ_ENABLED 0 // Disable domoticz by default
  402. #define DOMOTICZ_IN_TOPIC "domoticz/in" // Default subscription topic
  403. #define DOMOTICZ_OUT_TOPIC "domoticz/out" // Default publication topic
  404. // -----------------------------------------------------------------------------
  405. // HOME ASSISTANT
  406. // -----------------------------------------------------------------------------
  407. #ifndef HOMEASSISTANT_SUPPORT
  408. #define HOMEASSISTANT_SUPPORT 1 // Build with home assistant support
  409. #endif
  410. #define HOMEASSISTANT_PREFIX "homeassistant" // Default MQTT prefix
  411. // -----------------------------------------------------------------------------
  412. // INFLUXDB
  413. // -----------------------------------------------------------------------------
  414. #ifndef INFLUXDB_SUPPORT
  415. #define INFLUXDB_SUPPORT 1 // Enable InfluxDB support by default
  416. #endif
  417. #define INFLUXDB_PORT 8086 // Default InfluxDB port
  418. // -----------------------------------------------------------------------------
  419. // NTP
  420. // -----------------------------------------------------------------------------
  421. #ifndef NTP_SUPPORT
  422. #define NTP_SUPPORT 1 // Build with NTP support by default
  423. #endif
  424. #define NTP_SERVER "pool.ntp.org" // Default NTP server
  425. #define NTP_TIME_OFFSET 1 // Default timezone offset (GMT+1)
  426. #define NTP_DAY_LIGHT true // Enable daylight time saving by default
  427. #define NTP_UPDATE_INTERVAL 1800 // NTP check every 30 minutes
  428. // -----------------------------------------------------------------------------
  429. // FAUXMO
  430. // -----------------------------------------------------------------------------
  431. // This setting defines whether Alexa support should be built into the firmware
  432. #ifndef ALEXA_SUPPORT
  433. #define ALEXA_SUPPORT 1
  434. #endif
  435. // This is default value for the alexaEnabled setting that defines whether
  436. // this device should be discoberable and respond to Alexa commands.
  437. // Both ALEXA_SUPPORT and alexaEnabled should be 1 for Alexa support to work.
  438. #define ALEXA_ENABLED 1
  439. // -----------------------------------------------------------------------------
  440. // RFBRIDGE
  441. // -----------------------------------------------------------------------------
  442. #define RF_SEND_TIMES 4 // How many times to send the message
  443. #define RF_SEND_DELAY 250 // Interval between sendings in ms