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.

529 lines
22 KiB

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