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.

715 lines
29 KiB

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
7 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. #define DEVICE_NAME MANUFACTURER "_" DEVICE // Concatenate both to get a unique device name
  10. //------------------------------------------------------------------------------
  11. // TELNET
  12. //------------------------------------------------------------------------------
  13. #ifndef TELNET_SUPPORT
  14. #define TELNET_SUPPORT 1 // Enable telnet support by default
  15. #endif
  16. #ifndef TELNET_STA
  17. #define TELNET_STA 0 // By default, disallow connections via STA interface
  18. #endif
  19. #define TELNET_PORT 23 // Port to listen to telnet clients
  20. #define TELNET_MAX_CLIENTS 1 // Max number of concurrent telnet clients
  21. //------------------------------------------------------------------------------
  22. // DEBUG
  23. //------------------------------------------------------------------------------
  24. // Serial debug log
  25. #ifndef DEBUG_SERIAL_SUPPORT
  26. #define DEBUG_SERIAL_SUPPORT 1 // Enable serial debug log
  27. #endif
  28. #ifndef DEBUG_PORT
  29. #define DEBUG_PORT Serial // Default debugging port
  30. #endif
  31. //------------------------------------------------------------------------------
  32. // UDP debug log
  33. // To receive the message son the destination computer use nc:
  34. // nc -ul 8113
  35. #ifndef DEBUG_UDP_SUPPORT
  36. #define DEBUG_UDP_SUPPORT 0 // Enable UDP debug log
  37. #endif
  38. #define DEBUG_UDP_IP IPAddress(192, 168, 1, 100)
  39. #define DEBUG_UDP_PORT 8113
  40. //------------------------------------------------------------------------------
  41. #ifndef DEBUG_TELNET_SUPPORT
  42. #define DEBUG_TELNET_SUPPORT TELNET_SUPPORT // Enable telnet debug log if telnet is enabled too
  43. #endif
  44. //------------------------------------------------------------------------------
  45. // General debug options and macros
  46. #define DEBUG_MESSAGE_MAX_LENGTH 80
  47. #define DEBUG_SUPPORT DEBUG_SERIAL_SUPPORT || DEBUG_UDP_SUPPORT || DEBUG_TELNET_SUPPORT
  48. #if DEBUG_SUPPORT
  49. #define DEBUG_MSG(...) debugSend(__VA_ARGS__)
  50. #define DEBUG_MSG_P(...) debugSend_P(__VA_ARGS__)
  51. #endif
  52. #ifndef DEBUG_MSG
  53. #define DEBUG_MSG(...)
  54. #define DEBUG_MSG_P(...)
  55. #endif
  56. //------------------------------------------------------------------------------
  57. // TERMINAL
  58. //------------------------------------------------------------------------------
  59. #ifndef TERMINAL_SUPPORT
  60. #define TERMINAL_SUPPORT 1 // Enable terminal commands
  61. #endif
  62. //------------------------------------------------------------------------------
  63. // CRASH
  64. //------------------------------------------------------------------------------
  65. #define CRASH_SAFE_TIME 60000 // The system is considered stable after these many millis
  66. #define CRASH_COUNT_MAX 5 // After this many crashes on boot
  67. // the system is flagged as unstable
  68. //------------------------------------------------------------------------------
  69. // EEPROM
  70. //------------------------------------------------------------------------------
  71. #define EEPROM_SIZE 4096 // EEPROM size in bytes
  72. #define EEPROM_RELAY_STATUS 0 // Address for the relay status (1 byte)
  73. #define EEPROM_ENERGY_COUNT 1 // Address for the energy counter (4 bytes)
  74. #define EEPROM_CUSTOM_RESET 5 // Address for the reset reason (1 byte)
  75. #define EEPROM_CRASH_COUNTER 6 // Address for the crash counter (1 byte)
  76. #define EEPROM_DATA_END 7 // End of custom EEPROM data block
  77. //------------------------------------------------------------------------------
  78. // HEARTBEAT
  79. //------------------------------------------------------------------------------
  80. #define HEARTBEAT_INTERVAL 300000 // Interval between heartbeat messages (in ms)
  81. #define UPTIME_OVERFLOW 4294967295 // Uptime overflow value
  82. // Topics that will be reported in heartbeat
  83. #define HEARTBEAT_REPORT_STATUS 1
  84. #define HEARTBEAT_REPORT_IP 1
  85. #define HEARTBEAT_REPORT_MAC 1
  86. #define HEARTBEAT_REPORT_RSSI 1
  87. #define HEARTBEAT_REPORT_UPTIME 1
  88. #define HEARTBEAT_REPORT_FREEHEAP 1
  89. #define HEARTBEAT_REPORT_VCC 1
  90. #define HEARTBEAT_REPORT_RELAY 1
  91. #define HEARTBEAT_REPORT_LIGHT 1
  92. #define HEARTBEAT_REPORT_HOSTNAME 1
  93. #define HEARTBEAT_REPORT_APP 1
  94. #define HEARTBEAT_REPORT_VERSION 1
  95. #define HEARTBEAT_REPORT_INTERVAL 0
  96. //------------------------------------------------------------------------------
  97. // RESET
  98. //------------------------------------------------------------------------------
  99. #define CUSTOM_RESET_HARDWARE 1 // Reset from hardware button
  100. #define CUSTOM_RESET_WEB 2 // Reset from web interface
  101. #define CUSTOM_RESET_TERMINAL 3 // Reset from terminal
  102. #define CUSTOM_RESET_MQTT 4 // Reset via MQTT
  103. #define CUSTOM_RESET_RPC 5 // Reset via RPC (HTTP)
  104. #define CUSTOM_RESET_OTA 6 // Reset after successful OTA update
  105. #define CUSTOM_RESET_NOFUSS 8 // Reset after successful NOFUSS update
  106. #define CUSTOM_RESET_UPGRADE 9 // Reset after update from web interface
  107. #define CUSTOM_RESET_FACTORY 10 // Factory reset from terminal
  108. #define CUSTOM_RESET_MAX 10
  109. #include <pgmspace.h>
  110. PROGMEM const char custom_reset_hardware[] = "Hardware button";
  111. PROGMEM const char custom_reset_web[] = "Reset from web interface";
  112. PROGMEM const char custom_reset_terminal[] = "Reset from terminal";
  113. PROGMEM const char custom_reset_mqtt[] = "Reset from MQTT";
  114. PROGMEM const char custom_reset_rpc[] = "Reset from RPC";
  115. PROGMEM const char custom_reset_ota[] = "Reset after successful OTA update";
  116. PROGMEM const char custom_reset_nofuss[] = "Reset after successful NoFUSS update";
  117. PROGMEM const char custom_reset_upgrade[] = "Reset after successful web update";
  118. PROGMEM const char custom_reset_factory[] = "Factory reset";
  119. PROGMEM const char* const custom_reset_string[] = {
  120. custom_reset_hardware, custom_reset_web, custom_reset_terminal,
  121. custom_reset_mqtt, custom_reset_rpc, custom_reset_ota,
  122. custom_reset_nofuss, custom_reset_upgrade, custom_reset_factory
  123. };
  124. //------------------------------------------------------------------------------
  125. // BUTTON
  126. //------------------------------------------------------------------------------
  127. #define BUTTON_DEBOUNCE_DELAY 50 // Debounce delay (ms)
  128. #define BUTTON_DBLCLICK_DELAY 500 // Time in ms to wait for a second (or third...) click
  129. #define BUTTON_LNGCLICK_DELAY 1000 // Time in ms holding the button down to get a long click
  130. #define BUTTON_LNGLNGCLICK_DELAY 10000 // Time in ms holding the button down to get a long-long click
  131. #define BUTTON_EVENT_NONE 0
  132. #define BUTTON_EVENT_PRESSED 1
  133. #define BUTTON_EVENT_RELEASED 2
  134. #define BUTTON_EVENT_CLICK 2
  135. #define BUTTON_EVENT_DBLCLICK 3
  136. #define BUTTON_EVENT_LNGCLICK 4
  137. #define BUTTON_EVENT_LNGLNGCLICK 5
  138. #define BUTTON_MODE_NONE 0
  139. #define BUTTON_MODE_TOGGLE 1
  140. #define BUTTON_MODE_ON 2
  141. #define BUTTON_MODE_OFF 3
  142. #define BUTTON_MODE_AP 4
  143. #define BUTTON_MODE_RESET 5
  144. #define BUTTON_MODE_PULSE 6
  145. #define BUTTON_MODE_FACTORY 7
  146. //------------------------------------------------------------------------------
  147. // RELAY
  148. //------------------------------------------------------------------------------
  149. #define RELAY_MODE_OFF 0
  150. #define RELAY_MODE_ON 1
  151. #define RELAY_MODE_SAME 2
  152. #define RELAY_MODE_TOOGLE 3
  153. #define RELAY_TYPE_NORMAL 0
  154. #define RELAY_TYPE_INVERSE 1
  155. #define RELAY_TYPE_LATCHED 2
  156. #define RELAY_SYNC_ANY 0
  157. #define RELAY_SYNC_NONE_OR_ONE 1
  158. #define RELAY_SYNC_ONE 2
  159. #define RELAY_SYNC_SAME 3
  160. #define RELAY_PULSE_NONE 0
  161. #define RELAY_PULSE_OFF 1
  162. #define RELAY_PULSE_ON 2
  163. #define RELAY_PROVIDER_RELAY 0
  164. #define RELAY_PROVIDER_DUAL 1
  165. #define RELAY_PROVIDER_LIGHT 2
  166. #define RELAY_PROVIDER_RFBRIDGE 3
  167. // Pulse time in milliseconds
  168. #define RELAY_PULSE_TIME 1.0
  169. // 0 means OFF, 1 ON and 2 whatever was before
  170. #define RELAY_MODE RELAY_MODE_OFF
  171. // 0 means ANY, 1 zero or one and 2 one and only one
  172. #define RELAY_SYNC RELAY_SYNC_ANY
  173. // 0 means no pulses, 1 means normally off, 2 normally on
  174. #define RELAY_PULSE_MODE RELAY_PULSE_NONE
  175. // Relay requests flood protection window - in seconds
  176. #define RELAY_FLOOD_WINDOW 3
  177. // Allowed actual relay changes inside requests flood protection window
  178. #define RELAY_FLOOD_CHANGES 5
  179. // Pulse with in milliseconds for a latched relay
  180. #define RELAY_LATCHING_PULSE 10
  181. // Do not save relay state after these many milliseconds
  182. #define RELAY_SAVE_DELAY 1000
  183. //------------------------------------------------------------------------------
  184. // I18N
  185. //------------------------------------------------------------------------------
  186. #define TMP_CELSIUS 0
  187. #define TMP_FAHRENHEIT 1
  188. #define TMP_UNITS TMP_CELSIUS // Temperature units (TMP_CELSIUS | TMP_FAHRENHEIT)
  189. //------------------------------------------------------------------------------
  190. // LED
  191. //------------------------------------------------------------------------------
  192. // All defined LEDs in the board can be managed through MQTT
  193. // except the first one when LED_AUTO is set to 1.
  194. // If LED_AUTO is set to 1 the board will a defined LED to show wifi status.
  195. #define LED_AUTO 1
  196. // LED # to use as WIFI status indicator
  197. #ifndef LED_WIFI
  198. #define LED_WIFI 1
  199. #endif
  200. // -----------------------------------------------------------------------------
  201. // WIFI
  202. // -----------------------------------------------------------------------------
  203. #define WIFI_CONNECT_TIMEOUT 60000 // Connecting timeout for WIFI in ms
  204. #define WIFI_RECONNECT_INTERVAL 180000 // If could not connect to WIFI, retry after this time in ms
  205. #define WIFI_MAX_NETWORKS 5 // Max number of WIFI connection configurations
  206. #define WIFI_AP_MODE AP_MODE_ALONE
  207. // Optional hardcoded configuration (up to 2 different networks)
  208. //#define WIFI1_SSID "..."
  209. //#define WIFI1_PASS "..."
  210. //#define WIFI1_IP "192.168.1.201"
  211. //#define WIFI1_GW "192.168.1.1"
  212. //#define WIFI1_MASK "255.255.255.0"
  213. //#define WIFI1_DNS "8.8.8.8"
  214. //#define WIFI2_SSID "..."
  215. //#define WIFI2_PASS "..."
  216. // -----------------------------------------------------------------------------
  217. // WEB
  218. // -----------------------------------------------------------------------------
  219. #ifndef WEB_SUPPORT
  220. #define WEB_SUPPORT 1 // Enable web support (http, api)
  221. #endif
  222. #ifndef WEB_EMBEDDED
  223. #define WEB_EMBEDDED 1 // Build the firmware with the web interface embedded in
  224. #endif
  225. // This is not working at the moment!!
  226. // Requires ASYNC_TCP_SSL_ENABLED to 1 and ESP8266 Arduino Core staging version.
  227. #define WEB_SSL_ENABLED 0 // Use HTTPS web interface
  228. #define WEB_MODE_NORMAL 0
  229. #define WEB_MODE_PASSWORD 1
  230. #define WEB_USERNAME "admin" // HTTP username
  231. #define WEB_FORCE_PASS_CHANGE 1 // Force the user to change the password if default one
  232. #define WEB_PORT 80 // HTTP port
  233. // -----------------------------------------------------------------------------
  234. // WEBSOCKETS
  235. // -----------------------------------------------------------------------------
  236. // This will only be enabled if WEB_SUPPORT is 1 (this is the default value)
  237. #define WS_BUFFER_SIZE 5 // Max number of secured websocket connections
  238. #define WS_TIMEOUT 1800000 // Timeout for secured websocket
  239. // -----------------------------------------------------------------------------
  240. // API
  241. // -----------------------------------------------------------------------------
  242. // This will only be enabled if WEB_SUPPORT is 1 (this is the default value)
  243. #define API_ENABLED 0 // Do not enable API by default
  244. #define API_BUFFER_SIZE 10 // Size of the buffer for HTTP GET API responses
  245. // -----------------------------------------------------------------------------
  246. // MDNS
  247. // -----------------------------------------------------------------------------
  248. #ifndef MDNS_SUPPORT
  249. #define MDNS_SUPPORT 1 // Publish services using mDNS by default
  250. #endif
  251. // -----------------------------------------------------------------------------
  252. // SPIFFS
  253. // -----------------------------------------------------------------------------
  254. #ifndef SPIFFS_SUPPORT
  255. #define SPIFFS_SUPPORT 0 // Do not add support for SPIFFS by default
  256. #endif
  257. // -----------------------------------------------------------------------------
  258. // OTA
  259. // -----------------------------------------------------------------------------
  260. #define OTA_PORT 8266 // OTA port
  261. // -----------------------------------------------------------------------------
  262. // NOFUSS
  263. // -----------------------------------------------------------------------------
  264. #ifndef NOFUSS_SUPPORT
  265. #define NOFUSS_SUPPORT 0 // Do not enable support for NoFuss by default
  266. #endif
  267. #define NOFUSS_ENABLED 0 // Do not perform NoFUSS updates by default
  268. #define NOFUSS_SERVER "" // Default NoFuss Server
  269. #define NOFUSS_INTERVAL 3600000 // Check for updates every hour
  270. // -----------------------------------------------------------------------------
  271. // MQTT
  272. // -----------------------------------------------------------------------------
  273. #ifndef MQTT_USE_ASYNC
  274. #define MQTT_USE_ASYNC 1 // Use AysncMQTTClient (1) or PubSubClient (0)
  275. #endif
  276. // MQTT OVER SSL
  277. // Using MQTT over SSL works pretty well but generates problems with the web interface.
  278. // It could be a good idea to use it in conjuntion with WEB_SUPPORT=0.
  279. // Requires ASYNC_TCP_SSL_ENABLED to 1 and ESP8266 Arduino Core staging version.
  280. //
  281. // You can use it with MQTT_USE_ASYNC=1 (AsyncMqttClient library)
  282. // but you might experience hiccups on the web interface, so my recommendation is:
  283. // WEB_SUPPORT=0
  284. //
  285. // If you use it with MQTT_USE_ASYNC=0 (PubSubClient library)
  286. // you will have to disable all the modules that use ESPAsyncTCP, that is:
  287. // ALEXA_SUPPORT=0, INFLUXDB_SUPPORT=0, TELNET_SUPPORT=0 and WEB_SUPPORT=0
  288. //
  289. // You will need the fingerprint for your MQTT server, example for CloudMQTT:
  290. // $ echo -n | openssl s_client -connect m11.cloudmqtt.com:24055 > cloudmqtt.pem
  291. // $ openssl x509 -noout -in cloudmqtt.pem -fingerprint -sha1
  292. #define MQTT_SSL_ENABLED 0 // By default MQTT over SSL will not be enabled
  293. #define MQTT_SSL_FINGERPRINT "" // SSL fingerprint of the server
  294. #define MQTT_ENABLED 0 // Do not enable MQTT connection by default
  295. #define MQTT_AUTOCONNECT 1 // If enabled and MDNS_SUPPORT=1 will perform an autodiscover and
  296. // autoconnect to the first MQTT broker found if none defined
  297. #define MQTT_SERVER "" // Default MQTT broker address
  298. #define MQTT_USER "" // Default MQTT broker usename
  299. #define MQTT_PASS "" // Default MQTT broker password
  300. #define MQTT_PORT 1883 // MQTT broker port
  301. #define MQTT_TOPIC "{identifier}" // Default MQTT base topic
  302. #define MQTT_RETAIN true // MQTT retain flag
  303. #define MQTT_QOS 0 // MQTT QoS value for all messages
  304. #define MQTT_KEEPALIVE 30 // MQTT keepalive value
  305. #define MQTT_RECONNECT_DELAY_MIN 5000 // Try to reconnect in 5 seconds upon disconnection
  306. #define MQTT_RECONNECT_DELAY_STEP 5000 // Increase the reconnect delay in 5 seconds after each failed attempt
  307. #define MQTT_RECONNECT_DELAY_MAX 120000 // Set reconnect time to 2 minutes at most
  308. #define MQTT_SKIP_RETAINED 1 // Skip retained messages on connection
  309. #define MQTT_SKIP_TIME 1000 // Skip messages for 1 second anter connection
  310. #define MQTT_USE_JSON 0 // Group messages in a JSON body
  311. #define MQTT_USE_JSON_DELAY 100 // Wait this many ms before grouping messages
  312. // These particles will be concatenated to the MQTT_TOPIC base to form the actual topic
  313. #define MQTT_TOPIC_JSON "data"
  314. #define MQTT_TOPIC_ACTION "action"
  315. #define MQTT_TOPIC_RELAY "relay"
  316. #define MQTT_TOPIC_LED "led"
  317. #define MQTT_TOPIC_BUTTON "button"
  318. #define MQTT_TOPIC_IP "ip"
  319. #define MQTT_TOPIC_VERSION "version"
  320. #define MQTT_TOPIC_UPTIME "uptime"
  321. #define MQTT_TOPIC_FREEHEAP "freeheap"
  322. #define MQTT_TOPIC_VCC "vcc"
  323. #define MQTT_TOPIC_STATUS "status"
  324. #define MQTT_TOPIC_MAC "mac"
  325. #define MQTT_TOPIC_RSSI "rssi"
  326. #define MQTT_TOPIC_APP "app"
  327. #define MQTT_TOPIC_INTERVAL "interval"
  328. #define MQTT_TOPIC_HOSTNAME "host"
  329. #define MQTT_TOPIC_TIME "time"
  330. #define MQTT_TOPIC_ANALOG "analog"
  331. #define MQTT_TOPIC_COUNTER "counter"
  332. #define MQTT_TOPIC_RFOUT "rfout"
  333. #define MQTT_TOPIC_RFIN "rfin"
  334. #define MQTT_TOPIC_RFLEARN "rflearn"
  335. // Power module
  336. #define MQTT_TOPIC_POWER_ACTIVE "power"
  337. #define MQTT_TOPIC_CURRENT "current"
  338. #define MQTT_TOPIC_VOLTAGE "voltage"
  339. #define MQTT_TOPIC_POWER_APPARENT "apparent"
  340. #define MQTT_TOPIC_POWER_REACTIVE "reactive"
  341. #define MQTT_TOPIC_POWER_FACTOR "factor"
  342. #define MQTT_TOPIC_ENERGY_DELTA "energy_delta"
  343. #define MQTT_TOPIC_ENERGY_TOTAL "energy_total"
  344. // Light module
  345. #define MQTT_TOPIC_CHANNEL "channel"
  346. #define MQTT_TOPIC_COLOR "color"
  347. #define MQTT_TOPIC_COLOR_RGB "color_rgb"
  348. #define MQTT_TOPIC_COLOR_HSV "color_hsv"
  349. #define MQTT_TOPIC_ANIM_MODE "anim_mode"
  350. #define MQTT_TOPIC_ANIM_SPEED "anim_speed"
  351. #define MQTT_TOPIC_BRIGHTNESS "brightness"
  352. #define MQTT_TOPIC_MIRED "mired"
  353. #define MQTT_TOPIC_KELVIN "kelvin"
  354. #define MQTT_STATUS_ONLINE "1" // Value for the device ON message
  355. #define MQTT_STATUS_OFFLINE "0" // Value for the device OFF message (will)
  356. #define MQTT_ACTION_RESET "reset" // RESET MQTT topic particle
  357. // Internal MQTT events (do not change)
  358. #define MQTT_CONNECT_EVENT 0
  359. #define MQTT_DISCONNECT_EVENT 1
  360. #define MQTT_MESSAGE_EVENT 2
  361. // Custom get and set postfixes
  362. // Use something like "/status" or "/set", with leading slash
  363. // Since 1.9.0 the default value is "" for getter and "/set" for setter
  364. #define MQTT_USE_GETTER ""
  365. #define MQTT_USE_SETTER "/set"
  366. // -----------------------------------------------------------------------------
  367. // SETTINGS
  368. // -----------------------------------------------------------------------------
  369. #ifndef SETTINGS_AUTOSAVE
  370. #define SETTINGS_AUTOSAVE 1 // Autosave settings o force manual commit
  371. #endif
  372. // -----------------------------------------------------------------------------
  373. // LIGHT
  374. // -----------------------------------------------------------------------------
  375. // Available light providers (do not change)
  376. #define LIGHT_PROVIDER_NONE 0
  377. #define LIGHT_PROVIDER_MY9192 1 // works with MY9231 also (Sonoff B1)
  378. #define LIGHT_PROVIDER_DIMMER 2
  379. // LIGHT_PROVIDER_DIMMER can have from 1 to 5 different channels.
  380. // They have to be defined for each device in the hardware.h file.
  381. // If 3 or more channels first 3 will be considered RGB.
  382. // Usual configurations are:
  383. // 1 channels => W
  384. // 2 channels => WW
  385. // 3 channels => RGB
  386. // 4 channels => RGBW
  387. // 5 channels => RGBWW
  388. #ifndef LIGHT_SAVE_ENABLED
  389. #define LIGHT_SAVE_ENABLED 1 // Light channel values saved by default after each change
  390. #endif
  391. #define LIGHT_SAVE_DELAY 5 // Persist color after 5 seconds to avoid wearing out
  392. #ifndef LIGHT_PWM_FREQUENCY
  393. #define LIGHT_PWM_FREQUENCY 1000 // PWM frequency
  394. #endif
  395. #ifndef LIGHT_MAX_PWM
  396. #define LIGHT_MAX_PWM 4095 // Maximum PWM value
  397. #endif
  398. #ifndef LIGHT_LIMIT_PWM
  399. #define LIGHT_LIMIT_PWM LIGHT_MAX_PWM // Limit PWM to this value (prevent 100% power)
  400. #endif
  401. #ifndef LIGHT_MAX_VALUE
  402. #define LIGHT_MAX_VALUE 255 // Maximum light value
  403. #endif
  404. #define LIGHT_MAX_BRIGHTNESS 255 // Maximun brightness value
  405. #define LIGHT_USE_COLOR 1 // Use 3 first channels as RGB
  406. #define LIGHT_USE_WHITE 0 // Use white channel whenever RGB have the same value
  407. #define LIGHT_USE_GAMMA 0 // Use gamma correction for color channels
  408. #define LIGHT_USE_CSS 1 // Use CSS style to report colors (1=> "#FF0000", 0=> "255,0,0")
  409. // -----------------------------------------------------------------------------
  410. // POWER METERING
  411. // -----------------------------------------------------------------------------
  412. // Available power-metering providers (do not change this)
  413. #define POWER_PROVIDER_NONE 0x00
  414. #define POWER_PROVIDER_EMON_ANALOG 0x10
  415. #define POWER_PROVIDER_EMON_ADC121 0x11
  416. #define POWER_PROVIDER_HLW8012 0x20
  417. #define POWER_PROVIDER_V9261F 0x30
  418. #define POWER_PROVIDER_ECH1560 0x40
  419. // Available magnitudes (do not change this)
  420. #define POWER_MAGNITUDE_CURRENT 1
  421. #define POWER_MAGNITUDE_VOLTAGE 2
  422. #define POWER_MAGNITUDE_ACTIVE 4
  423. #define POWER_MAGNITUDE_APPARENT 8
  424. #define POWER_MAGNITUDE_REACTIVE 16
  425. #define POWER_MAGNITUDE_POWER_FACTOR 32
  426. #define POWER_MAGNITUDE_ALL 63
  427. // No power provider defined (do not change this)
  428. #ifndef POWER_PROVIDER
  429. #define POWER_PROVIDER POWER_PROVIDER_NONE
  430. #endif
  431. // Identify available magnitudes (do not change this)
  432. #if (POWER_PROVIDER == POWER_PROVIDER_HLW8012) || (POWER_PROVIDER == POWER_PROVIDER_V9261F)
  433. #define POWER_HAS_ACTIVE 1
  434. #else
  435. #define POWER_HAS_ACTIVE 0
  436. #endif
  437. #if (POWER_PROVIDER == POWER_PROVIDER_HLW8012)
  438. #define POWER_HAS_ENERGY 1
  439. #else
  440. #define POWER_HAS_ENERGY 0
  441. #endif
  442. #define POWER_VOLTAGE 230 // Default voltage
  443. #define POWER_READ_INTERVAL 6000 // Default reading interval (6 seconds)
  444. #define POWER_REPORT_INTERVAL 60000 // Default report interval (1 minute)
  445. #define POWER_REPORT_BUFFER 12 // Default buffer size ()
  446. #define POWER_CURRENT_DECIMALS 2 // Decimals for current values
  447. #define POWER_VOLTAGE_DECIMALS 0 // Decimals for voltage values
  448. #define POWER_POWER_DECIMALS 0 // Decimals for power values
  449. #define POWER_ENERGY_DECIMALS 3 // Decimals for energy values
  450. #define POWER_ENERGY_DECIMALS_KWH 6 // Decimals for energy values
  451. #define POWER_ENERGY_FACTOR 1 // Watt * seconds == Joule (Ws == J)
  452. #define POWER_ENERGY_FACTOR_KWH (1. / 1000. / 3600.) // kWh
  453. #if POWER_PROVIDER == POWER_PROVIDER_EMON_ANALOG
  454. #define EMON_CURRENT_RATIO 30 // Current ratio in the clamp (30V/1A)
  455. #define EMON_SAMPLES 1000 // Number of samples to get for each reading
  456. #define EMON_ADC_BITS 10 // ADC depth
  457. #define EMON_REFERENCE_VOLTAGE 1.0 // Reference voltage of the ADC
  458. #define EMON_CURRENT_OFFSET 0.25 // Current offset (error)
  459. #undef ADC_VCC_ENABLED
  460. #define ADC_VCC_ENABLED 0 // Disable internal battery measurement
  461. #endif
  462. #if POWER_PROVIDER == POWER_PROVIDER_EMON_ADC121
  463. #define EMON_CURRENT_RATIO 30 // Current ratio in the clamp (30V/1A)
  464. #define EMON_SAMPLES 1000 // Number of samples to get for each reading
  465. #define EMON_ADC_BITS 12 // ADC depth
  466. #define EMON_REFERENCE_VOLTAGE 3.3 // Reference voltage of the ADC
  467. #define EMON_CURRENT_OFFSET 0.10 // Current offset (error)
  468. #define ADC121_I2C_ADDRESS 0x50 // I2C address of the ADC121
  469. #undef I2C_SUPPORT
  470. #define I2C_SUPPORT 1 // Enabled I2C support
  471. #endif
  472. #if POWER_PROVIDER == POWER_PROVIDER_HLW8012
  473. #define HLW8012_USE_INTERRUPTS 1 // Use interrupts to trap HLW8012 signals
  474. #define HLW8012_SEL_CURRENT HIGH // SEL pin to HIGH to measure current
  475. #define HLW8012_CURRENT_R 0.001 // Current resistor
  476. #define HLW8012_VOLTAGE_R_UP ( 5 * 470000 ) // Upstream voltage resistor
  477. #define HLW8012_VOLTAGE_R_DOWN ( 1000 ) // Downstream voltage resistor
  478. #endif
  479. #if POWER_PROVIDER == POWER_PROVIDER_V9261F
  480. #undef POWER_REPORT_BUFFER
  481. #define POWER_REPORT_BUFFER 60 // Override median buffer size
  482. #ifndef V9261F_PIN
  483. #define V9261F_PIN 2 // TX pin from the V9261F
  484. #endif
  485. #ifndef V9261F_PIN_INVERSE
  486. #define V9261F_PIN_INVERSE 1 // Signal is inverted
  487. #endif
  488. #define V9261F_SYNC_INTERVAL 600 // Sync signal length (ms)
  489. #define V9261F_BAUDRATE 4800 // UART baudrate
  490. // Default ratios
  491. #define V9261F_CURRENT_FACTOR 79371434.0
  492. #define V9261F_VOLTAGE_FACTOR 4160651.0
  493. #define V9261F_POWER_FACTOR 153699.0
  494. #define V9261F_RPOWER_FACTOR V9261F_CURRENT_FACTOR
  495. #endif
  496. #if POWER_PROVIDER == POWER_PROVIDER_ECH1560
  497. #undef POWER_REPORT_BUFFER
  498. #define POWER_REPORT_BUFFER 60 // Override median buffer size
  499. #ifndef ECH1560_CLK_PIN
  500. #define ECH1560_CLK_PIN 4 // Default CLK pin
  501. #endif
  502. #ifndef ECH1560_MISO_PIN
  503. #define ECH1560_MISO_PIN 5 // Default MISO pin
  504. #endif
  505. #ifndef ECH1560_INVERTED
  506. #define ECH1560_INVERTED 0 // Power signal is inverted
  507. #endif
  508. #endif
  509. // -----------------------------------------------------------------------------
  510. // I2C
  511. // -----------------------------------------------------------------------------
  512. #ifndef I2C_SUPPORT
  513. #define I2C_SUPPORT 0 // I2C enabled
  514. #endif
  515. #define I2C_SDA_PIN 4 // SDA GPIO
  516. #define I2C_SCL_PIN 14 // SCL GPIO
  517. #define I2C_CLOCK_STRETCH_TIME 200 // BRZO clock stretch time
  518. #define I2C_SCL_FREQUENCY 1000 // BRZO SCL frequency
  519. // -----------------------------------------------------------------------------
  520. // DOMOTICZ
  521. // -----------------------------------------------------------------------------
  522. #ifndef DOMOTICZ_SUPPORT
  523. #define DOMOTICZ_SUPPORT 1 // Build with domoticz support
  524. #endif
  525. #define DOMOTICZ_ENABLED 0 // Disable domoticz by default
  526. #define DOMOTICZ_IN_TOPIC "domoticz/in" // Default subscription topic
  527. #define DOMOTICZ_OUT_TOPIC "domoticz/out" // Default publication topic
  528. // -----------------------------------------------------------------------------
  529. // HOME ASSISTANT
  530. // -----------------------------------------------------------------------------
  531. #ifndef HOMEASSISTANT_SUPPORT
  532. #define HOMEASSISTANT_SUPPORT 1 // Build with home assistant support
  533. #endif
  534. #define HOMEASSISTANT_PREFIX "homeassistant" // Default MQTT prefix
  535. // -----------------------------------------------------------------------------
  536. // INFLUXDB
  537. // -----------------------------------------------------------------------------
  538. #ifndef INFLUXDB_SUPPORT
  539. #define INFLUXDB_SUPPORT 1 // Enable InfluxDB support by default
  540. #endif
  541. #define INFLUXDB_PORT 8086 // Default InfluxDB port
  542. // -----------------------------------------------------------------------------
  543. // NTP
  544. // -----------------------------------------------------------------------------
  545. #ifndef NTP_SUPPORT
  546. #define NTP_SUPPORT 1 // Build with NTP support by default
  547. #endif
  548. #define NTP_SERVER "pool.ntp.org" // Default NTP server
  549. #define NTP_TIME_OFFSET 1 // Default timezone offset (GMT+1)
  550. #define NTP_DAY_LIGHT true // Enable daylight time saving by default
  551. #define NTP_UPDATE_INTERVAL 1800 // NTP check every 30 minutes
  552. // -----------------------------------------------------------------------------
  553. // FAUXMO
  554. // -----------------------------------------------------------------------------
  555. // This setting defines whether Alexa support should be built into the firmware
  556. #ifndef ALEXA_SUPPORT
  557. #define ALEXA_SUPPORT 1
  558. #endif
  559. // This is default value for the alexaEnabled setting that defines whether
  560. // this device should be discoberable and respond to Alexa commands.
  561. // Both ALEXA_SUPPORT and alexaEnabled should be 1 for Alexa support to work.
  562. #define ALEXA_ENABLED 1
  563. // -----------------------------------------------------------------------------
  564. // RFBRIDGE
  565. // -----------------------------------------------------------------------------
  566. #define RF_SEND_TIMES 4 // How many times to send the message
  567. #define RF_SEND_DELAY 250 // Interval between sendings in ms