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.

1411 lines
47 KiB

6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
7 years ago
7 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
  1. // =============================================================================
  2. // SENSORS - General configuration
  3. // =============================================================================
  4. #pragma once
  5. #ifndef SENSOR_DEBUG
  6. #define SENSOR_DEBUG 0 // Debug sensors
  7. #endif
  8. #ifndef SENSOR_READ_INTERVAL
  9. #define SENSOR_READ_INTERVAL 6 // Read data from sensors every 6 seconds
  10. #endif
  11. #ifndef SENSOR_READ_MIN_INTERVAL
  12. #define SENSOR_READ_MIN_INTERVAL 1 // Minimum read interval
  13. #endif
  14. #ifndef SENSOR_READ_MAX_INTERVAL
  15. #define SENSOR_READ_MAX_INTERVAL 3600 // Maximum read interval
  16. #endif
  17. #ifndef SENSOR_INIT_INTERVAL
  18. #define SENSOR_INIT_INTERVAL 10000 // Try to re-init non-ready sensors every 10s
  19. #endif
  20. #ifndef SENSOR_REPORT_EVERY
  21. #define SENSOR_REPORT_EVERY 10 // Report every this many readings
  22. #endif
  23. #ifndef SENSOR_REPORT_MIN_EVERY
  24. #define SENSOR_REPORT_MIN_EVERY 1 // Minimum every value
  25. #endif
  26. #ifndef SENSOR_REPORT_MAX_EVERY
  27. #define SENSOR_REPORT_MAX_EVERY 60 // Maximum
  28. #endif
  29. #ifndef SENSOR_USE_INDEX
  30. #define SENSOR_USE_INDEX 0 // Use the index in topic (i.e. temperature/0)
  31. #endif
  32. // even if just one sensor (0 for backwards compatibility)
  33. #ifndef SENSOR_POWER_CHECK_STATUS
  34. #define SENSOR_POWER_CHECK_STATUS 1 // If set to 1 the reported power/current/energy will be 0 if the relay[0] is OFF
  35. #endif
  36. #ifndef TEMPERATURE_MIN_CHANGE
  37. #define TEMPERATURE_MIN_CHANGE 0.0 // Minimum temperature change to report
  38. #endif
  39. #ifndef HUMIDITY_MIN_CHANGE
  40. #define HUMIDITY_MIN_CHANGE 0.0 // Minimum humidity change to report
  41. #endif
  42. #ifndef ENERGY_MAX_CHANGE
  43. #define ENERGY_MAX_CHANGE 0.0 // Maximum energy change to report (if >0 it will allways report when delta(E) is greater than this)
  44. #endif
  45. #ifndef SENSOR_SAVE_EVERY
  46. #define SENSOR_SAVE_EVERY 0 // Save accumulating values to EEPROM (atm only energy)
  47. // A 0 means do not save and it's the default value
  48. // A number different from 0 means it should store the value in EEPROM
  49. // after these many reports
  50. // Warning: this might wear out flash fast!
  51. #endif
  52. #define SENSOR_PUBLISH_ADDRESSES 0 // Publish sensor addresses
  53. #define SENSOR_ADDRESS_TOPIC "address" // Topic to publish sensor addresses
  54. // -----------------------------------------------------------------------------
  55. // Magnitude offset correction
  56. // -----------------------------------------------------------------------------
  57. #ifndef SENSOR_TEMPERATURE_CORRECTION
  58. #define SENSOR_TEMPERATURE_CORRECTION 0.0
  59. #endif
  60. #ifndef SENSOR_HUMIDITY_CORRECTION
  61. #define SENSOR_HUMIDITY_CORRECTION 0.0
  62. #endif
  63. #ifndef SENSOR_PRESSURE_CORRECTION
  64. #define SENSOR_PRESSURE_CORRECTION 0.0
  65. #endif
  66. #ifndef SENSOR_LUX_CORRECTION
  67. #define SENSOR_LUX_CORRECTION 0.0
  68. #endif
  69. // =============================================================================
  70. // Specific data for each sensor
  71. // =============================================================================
  72. //------------------------------------------------------------------------------
  73. // AM2320 Humidity & Temperature sensor over I2C
  74. // Enable support by passing AM2320_SUPPORT=1 build flag
  75. //------------------------------------------------------------------------------
  76. #ifndef AM2320_SUPPORT
  77. #define AM2320_SUPPORT 0
  78. #endif
  79. #ifndef AM2320_ADDRESS
  80. #define AM2320_ADDRESS 0x00 // 0x00 means auto
  81. #endif
  82. //------------------------------------------------------------------------------
  83. // Analog sensor
  84. // Enable support by passing ANALOG_SUPPORT=1 build flag
  85. //--------------------------------------------------------------------------------
  86. #ifndef ANALOG_SUPPORT
  87. #define ANALOG_SUPPORT 0
  88. #endif
  89. #ifndef ANALOG_SAMPLES
  90. #define ANALOG_SAMPLES 10 // Number of samples
  91. #endif
  92. #ifndef ANALOG_DELAY
  93. #define ANALOG_DELAY 0 // Delay between samples in micros
  94. #endif
  95. //Use the following to perform scaling of raw analog values
  96. // scaledRead = ( factor * rawRead ) + offset
  97. //
  98. //Please take note that the offset is not affected by the scaling factor
  99. #ifndef ANALOG_FACTOR
  100. #define ANALOG_FACTOR 1.0 // Multiply raw reading by this factor
  101. #endif
  102. #ifndef ANALOG_OFFSET
  103. #define ANALOG_OFFSET 0.0 // Add this offset to *scaled* value
  104. #endif
  105. // Round to this number of decimals
  106. #ifndef ANALOG_DECIMALS
  107. #define ANALOG_DECIMALS 2
  108. #endif
  109. //------------------------------------------------------------------------------
  110. // BH1750
  111. // Enable support by passing BH1750_SUPPORT=1 build flag
  112. // http://www.elechouse.com/elechouse/images/product/Digital%20light%20Sensor/bh1750fvi-e.pdf
  113. //------------------------------------------------------------------------------
  114. #ifndef BH1750_SUPPORT
  115. #define BH1750_SUPPORT 0
  116. #endif
  117. #ifndef BH1750_ADDRESS
  118. #define BH1750_ADDRESS 0x00 // 0x00 means auto
  119. #endif
  120. #define BH1750_MODE BH1750_CONTINUOUS_HIGH_RES_MODE
  121. //------------------------------------------------------------------------------
  122. // BMP085/BMP180
  123. // Enable support by passing BMP180_SUPPORT=1 build flag
  124. //------------------------------------------------------------------------------
  125. #ifndef BMP180_SUPPORT
  126. #define BMP180_SUPPORT 0
  127. #endif
  128. #ifndef BMP180_ADDRESS
  129. #define BMP180_ADDRESS 0x00 // 0x00 means auto
  130. #endif
  131. #define BMP180_MODE 3 // 0 for ultra-low power, 1 for standard, 2 for high resolution and 3 for ultrahigh resolution
  132. //------------------------------------------------------------------------------
  133. // BME280/BMP280
  134. // Enable support by passing BMX280_SUPPORT=1 build flag
  135. //------------------------------------------------------------------------------
  136. #ifndef BMX280_SUPPORT
  137. #define BMX280_SUPPORT 0
  138. #endif
  139. #ifndef BMX280_NUMBER
  140. #define BMX280_NUMBER 1 // Number of sensors present. Either 1 or 2 allowed
  141. #endif
  142. #ifndef BMX280_ADDRESS
  143. #define BMX280_ADDRESS 0x00 // 0x00 means auto (0x76 or 0x77 allowed) for sensor #0
  144. #endif // If (BMX280_NUMBER == 2) and
  145. // (BMX280_ADDRESS == 0x00) then sensor #1 is auto-discovered
  146. // (BMX280_ADDRESS != 0x00) then sensor #1 is the unnamed address
  147. #ifndef BMX280_MODE
  148. #define BMX280_MODE 1 // 0 for sleep mode, 1 or 2 for forced mode, 3 for normal mode
  149. #endif
  150. #ifndef BMX280_STANDBY
  151. #define BMX280_STANDBY 0 // 0 for 0.5ms, 1 for 62.5ms, 2 for 125ms
  152. // 3 for 250ms, 4 for 500ms, 5 for 1000ms
  153. // 6 for 10ms, 7 for 20ms
  154. #endif
  155. #ifndef BMX280_FILTER
  156. #define BMX280_FILTER 0 // 0 for OFF, 1 for 2 values, 2 for 4 values, 3 for 8 values and 4 for 16 values
  157. #endif
  158. #ifndef BMX280_TEMPERATURE
  159. #define BMX280_TEMPERATURE 1 // Oversampling for temperature (set to 0 to disable magnitude)
  160. // 0b000 = 0 = Skip measurement
  161. // 0b001 = 1 = 1x 16bit/0.0050C resolution
  162. // 0b010 = 2 = 2x 17bit/0.0025C
  163. // 0b011 = 3 = 4x 18bit/0.0012C
  164. // 0b100 = 4 = 8x 19bit/0.0006C
  165. // 0b101 = 5 = 16x 20bit/0.0003C
  166. #endif
  167. #ifndef BMX280_HUMIDITY
  168. #define BMX280_HUMIDITY 1 // Oversampling for humidity (set to 0 to disable magnitude, only for BME280)
  169. // 0b000 = 0 = Skip measurement
  170. // 0b001 = 1 = 1x 0.07% resolution
  171. // 0b010 = 2 = 2x 0.05%
  172. // 0b011 = 3 = 4x 0.04%
  173. // 0b100 = 4 = 8x 0.03%
  174. // 0b101 = 5 = 16x 0.02%
  175. #endif
  176. #ifndef BMX280_PRESSURE
  177. #define BMX280_PRESSURE 1 // Oversampling for pressure (set to 0 to disable magnitude)
  178. // 0b000 = 0 = Skipped
  179. // 0b001 = 1 = 1x 16bit/2.62 Pa resolution
  180. // 0b010 = 2 = 2x 17bit/1.31 Pa
  181. // 0b011 = 3 = 4x 18bit/0.66 Pa
  182. // 0b100 = 4 = 8x 19bit/0.33 Pa
  183. // 0b101 = 5 = 16x 20bit/0.16 Pa
  184. #endif
  185. //------------------------------------------------------------------------------
  186. // Dallas OneWire temperature sensors
  187. // Enable support by passing DALLAS_SUPPORT=1 build flag
  188. //------------------------------------------------------------------------------
  189. #ifndef DALLAS_SUPPORT
  190. #define DALLAS_SUPPORT 0
  191. #endif
  192. #ifndef DALLAS_PIN
  193. #define DALLAS_PIN 14
  194. #endif
  195. #define DALLAS_RESOLUTION 9 // Not used atm
  196. #define DALLAS_READ_INTERVAL 2000 // Force sensor read & cache every 2 seconds
  197. //------------------------------------------------------------------------------
  198. // DHTXX temperature/humidity sensor
  199. // Enable support by passing DHT_SUPPORT=1 build flag
  200. //------------------------------------------------------------------------------
  201. #ifndef DHT_SUPPORT
  202. #define DHT_SUPPORT 0
  203. #endif
  204. #ifndef DHT_PIN
  205. #define DHT_PIN 14
  206. #endif
  207. #ifndef DHT_TYPE
  208. #define DHT_TYPE DHT_CHIP_DHT22
  209. #endif
  210. //------------------------------------------------------------------------------
  211. // CSE7766 based power sensor
  212. // Enable support by passing CSE7766_SUPPORT=1 build flag
  213. //------------------------------------------------------------------------------
  214. #ifndef CSE7766_SUPPORT
  215. #define CSE7766_SUPPORT 0
  216. #endif
  217. #ifndef CSE7766_RX_PIN
  218. #define CSE7766_RX_PIN 3 // RX pin connected to the CSE7766
  219. // As we never transmit anything, this is the only pin used
  220. #endif
  221. #ifndef CSE7766_PIN_INVERSE
  222. #define CSE7766_PIN_INVERSE 0 // Signal is inverted
  223. #endif
  224. #define CSE7766_SYNC_INTERVAL 300 // Safe time between transmissions (ms)
  225. #define CSE7766_BAUDRATE 4800 // UART baudrate
  226. #define CSE7766_V1R 1.0 // 1mR current resistor
  227. #define CSE7766_V2R 1.0 // 1M voltage resistor
  228. //------------------------------------------------------------------------------
  229. // Digital sensor
  230. // Enable support by passing DIGITAL_SUPPORT=1 build flag
  231. //------------------------------------------------------------------------------
  232. #ifndef DIGITAL_SUPPORT
  233. #define DIGITAL_SUPPORT 0
  234. #endif
  235. #ifndef DIGITAL1_PIN
  236. #define DIGITAL1_PIN 5
  237. #endif
  238. #ifndef DIGITAL1_PIN_MODE
  239. #define DIGITAL1_PIN_MODE INPUT_PULLUP
  240. #endif
  241. #ifndef DIGITAL1_DEFAULT_STATE
  242. #define DIGITAL1_DEFAULT_STATE 1
  243. #endif
  244. #ifndef DIGITAL2_PIN
  245. #define DIGITAL2_PIN GPIO_NONE
  246. #endif
  247. #ifndef DIGITAL2_PIN_MODE
  248. #define DIGITAL2_PIN_MODE INPUT_PULLUP
  249. #endif
  250. #ifndef DIGITAL2_DEFAULT_STATE
  251. #define DIGITAL2_DEFAULT_STATE 1
  252. #endif
  253. #ifndef DIGITAL3_PIN
  254. #define DIGITAL3_PIN GPIO_NONE
  255. #endif
  256. #ifndef DIGITAL3_PIN_MODE
  257. #define DIGITAL3_PIN_MODE INPUT_PULLUP
  258. #endif
  259. #ifndef DIGITAL3_DEFAULT_STATE
  260. #define DIGITAL3_DEFAULT_STATE 1
  261. #endif
  262. #ifndef DIGITAL4_PIN
  263. #define DIGITAL4_PIN GPIO_NONE
  264. #endif
  265. #ifndef DIGITAL4_PIN_MODE
  266. #define DIGITAL4_PIN_MODE INPUT_PULLUP
  267. #endif
  268. #ifndef DIGITAL4_DEFAULT_STATE
  269. #define DIGITAL4_DEFAULT_STATE 1
  270. #endif
  271. #ifndef DIGITAL5_PIN
  272. #define DIGITAL5_PIN GPIO_NONE
  273. #endif
  274. #ifndef DIGITAL5_PIN_MODE
  275. #define DIGITAL5_PIN_MODE INPUT_PULLUP
  276. #endif
  277. #ifndef DIGITAL5_DEFAULT_STATE
  278. #define DIGITAL5_DEFAULT_STATE 1
  279. #endif
  280. #ifndef DIGITAL6_PIN
  281. #define DIGITAL6_PIN GPIO_NONE
  282. #endif
  283. #ifndef DIGITAL6_PIN_MODE
  284. #define DIGITAL6_PIN_MODE INPUT_PULLUP
  285. #endif
  286. #ifndef DIGITAL6_DEFAULT_STATE
  287. #define DIGITAL6_DEFAULT_STATE 1
  288. #endif
  289. #ifndef DIGITAL7_PIN
  290. #define DIGITAL7_PIN GPIO_NONE
  291. #endif
  292. #ifndef DIGITAL7_PIN_MODE
  293. #define DIGITAL7_PIN_MODE INPUT_PULLUP
  294. #endif
  295. #ifndef DIGITAL7_DEFAULT_STATE
  296. #define DIGITAL7_DEFAULT_STATE 1
  297. #endif
  298. #ifndef DIGITAL8_PIN
  299. #define DIGITAL8_PIN GPIO_NONE
  300. #endif
  301. #ifndef DIGITAL8_PIN_MODE
  302. #define DIGITAL8_PIN_MODE INPUT_PULLUP
  303. #endif
  304. #ifndef DIGITAL8_DEFAULT_STATE
  305. #define DIGITAL8_DEFAULT_STATE 1
  306. #endif
  307. //------------------------------------------------------------------------------
  308. // ECH1560 based power sensor
  309. // Enable support by passing ECH1560_SUPPORT=1 build flag
  310. //------------------------------------------------------------------------------
  311. #ifndef ECH1560_SUPPORT
  312. #define ECH1560_SUPPORT 0
  313. #endif
  314. #ifndef ECH1560_CLK_PIN
  315. #define ECH1560_CLK_PIN 4 // CLK pin for the ECH1560
  316. #endif
  317. #ifndef ECH1560_MISO_PIN
  318. #define ECH1560_MISO_PIN 5 // MISO pin for the ECH1560
  319. #endif
  320. #ifndef ECH1560_INVERTED
  321. #define ECH1560_INVERTED 0 // Signal is inverted
  322. #endif
  323. //------------------------------------------------------------------------------
  324. // Energy Monitor general settings
  325. //------------------------------------------------------------------------------
  326. #define EMON_MAX_SAMPLES 1000 // Max number of samples to get
  327. #define EMON_MAX_TIME 250 // Max time in ms to sample
  328. #define EMON_FILTER_SPEED 512 // Mobile average filter speed
  329. #define EMON_REFERENCE_VOLTAGE 3.3 // Reference voltage of the ADC
  330. #ifndef EMON_MAINS_VOLTAGE
  331. #define EMON_MAINS_VOLTAGE 230 // Mains voltage
  332. #endif
  333. #ifndef EMON_CURRENT_RATIO
  334. #define EMON_CURRENT_RATIO 30.0 // Current ratio in the clamp (30A/1V)
  335. #endif
  336. #ifndef EMON_REPORT_CURRENT
  337. #define EMON_REPORT_CURRENT 0 // Report current
  338. #endif
  339. #ifndef EMON_REPORT_POWER
  340. #define EMON_REPORT_POWER 1 // Report power
  341. #endif
  342. #ifndef EMON_REPORT_ENERGY
  343. #define EMON_REPORT_ENERGY 1 // Report energy
  344. #endif
  345. //------------------------------------------------------------------------------
  346. // Energy Monitor based on ADC121
  347. // Enable support by passing EMON_ADC121_SUPPORT=1 build flag
  348. //------------------------------------------------------------------------------
  349. #ifndef EMON_ADC121_SUPPORT
  350. #define EMON_ADC121_SUPPORT 0 // Do not build support by default
  351. #endif
  352. #ifndef EMON_ADC121_I2C_ADDRESS
  353. #define EMON_ADC121_I2C_ADDRESS 0x00 // 0x00 means auto
  354. #endif
  355. //------------------------------------------------------------------------------
  356. // Energy Monitor based on ADS1X15
  357. // Enable support by passing EMON_ADS1X15_SUPPORT=1 build flag
  358. //------------------------------------------------------------------------------
  359. #ifndef EMON_ADS1X15_SUPPORT
  360. #define EMON_ADS1X15_SUPPORT 0 // Do not build support by default
  361. #endif
  362. #ifndef EMON_ADS1X15_I2C_ADDRESS
  363. #define EMON_ADS1X15_I2C_ADDRESS 0x00 // 0x00 means auto
  364. #endif
  365. #define EMON_ADS1X15_TYPE ADS1X15_CHIP_ADS1115
  366. #define EMON_ADS1X15_GAIN ADS1X15_REG_CONFIG_PGA_4_096V
  367. #define EMON_ADS1X15_MASK 0x0F // A0=1 A1=2 A2=4 A3=8
  368. //------------------------------------------------------------------------------
  369. // Energy Monitor based on interval analog GPIO
  370. // Enable support by passing EMON_ANALOG_SUPPORT=1 build flag
  371. //------------------------------------------------------------------------------
  372. #ifndef EMON_ANALOG_SUPPORT
  373. #define EMON_ANALOG_SUPPORT 0 // Do not build support by default
  374. #endif
  375. //------------------------------------------------------------------------------
  376. // Counter sensor
  377. // Enable support by passing EVENTS_SUPPORT=1 build flag
  378. //------------------------------------------------------------------------------
  379. #ifndef EVENTS_SUPPORT
  380. #define EVENTS_SUPPORT 0 // Do not build with counter support by default
  381. #endif
  382. #ifndef EVENTS1_PIN
  383. #define EVENTS1_PIN 5 // GPIO to monitor
  384. #endif
  385. #ifndef EVENTS1_PIN_MODE
  386. #define EVENTS1_PIN_MODE INPUT // INPUT, INPUT_PULLUP
  387. #endif
  388. #ifndef EVENTS1_INTERRUPT_MODE
  389. #define EVENTS1_INTERRUPT_MODE RISING // RISING, FALLING, CHANGE
  390. #endif
  391. #ifndef EVENTS1_DEBOUNCE
  392. #define EVENTS1_DEBOUNCE 50 // Do not register events within less than 50 millis
  393. #endif
  394. #ifndef EVENTS2_PIN
  395. #define EVENTS2_PIN GPIO_NONE // GPIO to monitor
  396. #endif
  397. #ifndef EVENTS2_PIN_MODE
  398. #define EVENTS2_PIN_MODE INPUT // INPUT, INPUT_PULLUP
  399. #endif
  400. #ifndef EVENTS2_INTERRUPT_MODE
  401. #define EVENTS2_INTERRUPT_MODE RISING // RISING, FALLING, CHANGE
  402. #endif
  403. #ifndef EVENTS2_DEBOUNCE
  404. #define EVENTS2_DEBOUNCE 50 // Do not register events within less than 50 millis
  405. #endif
  406. #ifndef EVENTS3_PIN
  407. #define EVENTS3_PIN GPIO_NONE // GPIO to monitor
  408. #endif
  409. #ifndef EVENTS3_PIN_MODE
  410. #define EVENTS3_PIN_MODE INPUT // INPUT, INPUT_PULLUP
  411. #endif
  412. #ifndef EVENTS3_INTERRUPT_MODE
  413. #define EVENTS3_INTERRUPT_MODE RISING // RISING, FALLING, CHANGE
  414. #endif
  415. #ifndef EVENTS3_DEBOUNCE
  416. #define EVENTS3_DEBOUNCE 50 // Do not register events within less than 50 millis
  417. #endif
  418. #ifndef EVENTS4_PIN
  419. #define EVENTS4_PIN GPIO_NONE // GPIO to monitor
  420. #endif
  421. #ifndef EVENTS4_PIN_MODE
  422. #define EVENTS4_PIN_MODE INPUT // INPUT, INPUT_PULLUP
  423. #endif
  424. #ifndef EVENTS4_INTERRUPT_MODE
  425. #define EVENTS4_INTERRUPT_MODE RISING // RISING, FALLING, CHANGE
  426. #endif
  427. #ifndef EVENTS4_DEBOUNCE
  428. #define EVENTS4_DEBOUNCE 50 // Do not register events within less than 50 millis
  429. #endif
  430. #ifndef EVENTS5_PIN
  431. #define EVENTS5_PIN GPIO_NONE // GPIO to monitor
  432. #endif
  433. #ifndef EVENTS5_PIN_MODE
  434. #define EVENTS5_PIN_MODE INPUT // INPUT, INPUT_PULLUP
  435. #endif
  436. #ifndef EVENTS5_INTERRUPT_MODE
  437. #define EVENTS5_INTERRUPT_MODE RISING // RISING, FALLING, CHANGE
  438. #endif
  439. #ifndef EVENTS5_DEBOUNCE
  440. #define EVENTS5_DEBOUNCE 50 // Do not register events within less than 50 millis
  441. #endif
  442. #ifndef EVENTS6_PIN
  443. #define EVENTS6_PIN GPIO_NONE // GPIO to monitor
  444. #endif
  445. #ifndef EVENTS6_PIN_MODE
  446. #define EVENTS6_PIN_MODE INPUT // INPUT, INPUT_PULLUP
  447. #endif
  448. #ifndef EVENTS6_INTERRUPT_MODE
  449. #define EVENTS6_INTERRUPT_MODE RISING // RISING, FALLING, CHANGE
  450. #endif
  451. #ifndef EVENTS6_DEBOUNCE
  452. #define EVENTS6_DEBOUNCE 50 // Do not register events within less than 50 millis
  453. #endif
  454. #ifndef EVENTS7_PIN
  455. #define EVENTS7_PIN GPIO_NONE // GPIO to monitor
  456. #endif
  457. #ifndef EVENTS7_PIN_MODE
  458. #define EVENTS7_PIN_MODE INPUT // INPUT, INPUT_PULLUP
  459. #endif
  460. #ifndef EVENTS7_INTERRUPT_MODE
  461. #define EVENTS7_INTERRUPT_MODE RISING // RISING, FALLING, CHANGE
  462. #endif
  463. #ifndef EVENTS7_DEBOUNCE
  464. #define EVENTS7_DEBOUNCE 50 // Do not register events within less than 50 millis
  465. #endif
  466. #ifndef EVENTS8_PIN
  467. #define EVENTS8_PIN GPIO_NONE // GPIO to monitor
  468. #endif
  469. #ifndef EVENTS8_PIN_MODE
  470. #define EVENTS8_PIN_MODE INPUT // INPUT, INPUT_PULLUP
  471. #endif
  472. #ifndef EVENTS8_INTERRUPT_MODE
  473. #define EVENTS8_INTERRUPT_MODE RISING // RISING, FALLING, CHANGE
  474. #endif
  475. #ifndef EVENTS8_DEBOUNCE
  476. #define EVENTS8_DEBOUNCE 50 // Do not register events within less than 50 millis
  477. #endif
  478. //------------------------------------------------------------------------------
  479. // Geiger sensor
  480. // Enable support by passing GEIGER_SUPPORT=1 build flag
  481. //------------------------------------------------------------------------------
  482. #ifndef GEIGER_SUPPORT
  483. #define GEIGER_SUPPORT 0 // Do not build with geiger support by default
  484. #endif
  485. #ifndef GEIGER_PIN
  486. #define GEIGER_PIN 5 // D1
  487. #endif
  488. #ifndef GEIGER_PIN_MODE
  489. #define GEIGER_PIN_MODE INPUT // INPUT, INPUT_PULLUP
  490. #endif
  491. #ifndef GEIGER_INTERRUPT_MODE
  492. #define GEIGER_INTERRUPT_MODE RISING // RISING, FALLING, CHANGE
  493. #endif
  494. #define GEIGER_DEBOUNCE 25 // Do not register events within less than 25 millis.
  495. // Value derived here: Debounce time 25ms, because https://github.com/Trickx/espurna/wiki/Geiger-counter
  496. #define GEIGER_CPM2SIEVERT 240 // CPM to µSievert per hour conversion factor
  497. // Typically the literature uses the invers, but I find an integer type more convienient.
  498. #define GEIGER_REPORT_SIEVERTS 1 // Enabler for local dose rate reports in µSv/h
  499. #define GEIGER_REPORT_CPM 1 // Enabler for local dose rate reports in counts per minute
  500. //------------------------------------------------------------------------------
  501. // GUVAS12SD UV Sensor (analog)
  502. // Enable support by passing GUVAS12SD_SUPPORT=1 build flag
  503. //------------------------------------------------------------------------------
  504. #ifndef GUVAS12SD_SUPPORT
  505. #define GUVAS12SD_SUPPORT 0
  506. #endif
  507. #ifndef GUVAS12SD_PIN
  508. #define GUVAS12SD_PIN 14
  509. #endif
  510. //------------------------------------------------------------------------------
  511. // HLW8012 Energy monitor IC
  512. // Enable support by passing HLW8012_SUPPORT=1 build flag
  513. //------------------------------------------------------------------------------
  514. #ifndef HLW8012_SUPPORT
  515. #define HLW8012_SUPPORT 0
  516. #endif
  517. #ifndef HLW8012_SEL_PIN
  518. #define HLW8012_SEL_PIN 5
  519. #endif
  520. #ifndef HLW8012_CF1_PIN
  521. #define HLW8012_CF1_PIN 13
  522. #endif
  523. #ifndef HLW8012_CF_PIN
  524. #define HLW8012_CF_PIN 14
  525. #endif
  526. #ifndef HLW8012_SEL_CURRENT
  527. #define HLW8012_SEL_CURRENT HIGH // SEL pin to HIGH to measure current
  528. #endif
  529. #ifndef HLW8012_CURRENT_R
  530. #define HLW8012_CURRENT_R 0.001 // Current resistor
  531. #endif
  532. #ifndef HLW8012_VOLTAGE_R_UP
  533. #define HLW8012_VOLTAGE_R_UP ( 5 * 470000 ) // Upstream voltage resistor
  534. #endif
  535. #ifndef HLW8012_VOLTAGE_R_DOWN
  536. #define HLW8012_VOLTAGE_R_DOWN ( 1000 ) // Downstream voltage resistor
  537. #endif
  538. #ifndef HLW8012_CURRENT_RATIO
  539. #define HLW8012_CURRENT_RATIO 0.0 // Set to 0.0 to use factory defaults
  540. #endif
  541. #ifndef HLW8012_VOLTAGE_RATIO
  542. #define HLW8012_VOLTAGE_RATIO 0.0 // Set to 0.0 to use factory defaults
  543. #endif
  544. #ifndef HLW8012_POWER_RATIO
  545. #define HLW8012_POWER_RATIO 0.0 // Set to 0.0 to use factory defaults
  546. #endif
  547. #ifndef HLW8012_USE_INTERRUPTS
  548. #define HLW8012_USE_INTERRUPTS 1 // Use interrupts to trap HLW8012 signals
  549. #endif
  550. #ifndef HLW8012_WAIT_FOR_WIFI
  551. #define HLW8012_WAIT_FOR_WIFI 0 // Weather to enable interrupts only after
  552. // wifi connection has been stablished
  553. #endif
  554. #ifndef HLW8012_INTERRUPT_ON
  555. #define HLW8012_INTERRUPT_ON CHANGE // When to trigger the interrupt
  556. // Use CHANGE for HLW8012
  557. // Use FALLING for BL0937 / HJL0
  558. #endif
  559. //------------------------------------------------------------------------------
  560. // LDR sensor
  561. // Enable support by passing LDR_SUPPORT=1 build flag
  562. //------------------------------------------------------------------------------
  563. #ifndef LDR_SUPPORT
  564. #define LDR_SUPPORT 0
  565. #endif
  566. #ifndef LDR_SAMPLES
  567. #define LDR_SAMPLES 10 // Number of samples
  568. #endif
  569. #ifndef LDR_DELAY
  570. #define LDR_DELAY 0 // Delay between samples in micros
  571. #endif
  572. #ifndef LDR_TYPE
  573. #define LDR_TYPE LDR_GL5528
  574. #endif
  575. #ifndef LDR_ON_GROUND
  576. #define LDR_ON_GROUND true
  577. #endif
  578. #ifndef LDR_RESISTOR
  579. #define LDR_RESISTOR 10000 // Resistance
  580. #endif
  581. #ifndef LDR_MULTIPLICATION
  582. #define LDR_MULTIPLICATION 32017200
  583. #endif
  584. #ifndef LDR_POWER
  585. #define LDR_POWER 1.5832
  586. #endif
  587. //------------------------------------------------------------------------------
  588. // MHZ19 CO2 sensor
  589. // Enable support by passing MHZ19_SUPPORT=1 build flag
  590. //------------------------------------------------------------------------------
  591. #ifndef MHZ19_SUPPORT
  592. #define MHZ19_SUPPORT 0
  593. #endif
  594. #ifndef MHZ19_RX_PIN
  595. #define MHZ19_RX_PIN 13
  596. #endif
  597. #ifndef MHZ19_TX_PIN
  598. #define MHZ19_TX_PIN 15
  599. #endif
  600. //------------------------------------------------------------------------------
  601. // MICS-2710 (and MICS-4514) NO2 sensor
  602. // Enable support by passing MICS2710_SUPPORT=1 build flag
  603. //------------------------------------------------------------------------------
  604. #ifndef MICS2710_SUPPORT
  605. #define MICS2710_SUPPORT 0
  606. #endif
  607. #ifndef MICS2710_NOX_PIN
  608. #define MICS2710_NOX_PIN 0
  609. #endif
  610. #ifndef MICS2710_PRE_PIN
  611. #define MICS2710_PRE_PIN 4
  612. #endif
  613. #define MICS2710_PREHEAT_TIME 10000 // 10s preheat for NOX read
  614. #define MICS2710_RL 820 // RL, load resistor
  615. #define MICS2710_R0 2200 // R0 calibration value for NO2 sensor,
  616. // Typical value as per datasheet
  617. //------------------------------------------------------------------------------
  618. // MICS-5525 (and MICS-4514) CO sensor
  619. // Enable support by passing MICS5525_SUPPORT=1 build flag
  620. //------------------------------------------------------------------------------
  621. #ifndef MICS5525_SUPPORT
  622. #define MICS5525_SUPPORT 0
  623. #endif
  624. #ifndef MICS5525_RED_PIN
  625. #define MICS5525_RED_PIN 0
  626. #endif
  627. #define MICS5525_RL 820 // RL, load resistor
  628. #define MICS5525_R0 750000 // R0 calibration value for NO2 sensor,
  629. // Typical value as per datasheet
  630. //------------------------------------------------------------------------------
  631. // NTC sensor
  632. // Enable support by passing NTC_SUPPORT=1 build flag
  633. //--------------------------------------------------------------------------------
  634. #ifndef NTC_SUPPORT
  635. #define NTC_SUPPORT 0
  636. #endif
  637. #ifndef NTC_SAMPLES
  638. #define NTC_SAMPLES 10 // Number of samples
  639. #endif
  640. #ifndef NTC_DELAY
  641. #define NTC_DELAY 0 // Delay between samples in micros
  642. #endif
  643. #ifndef NTC_R_UP
  644. #define NTC_R_UP 0 // Resistor upstream, set to 0 if none
  645. #endif
  646. #ifndef NTC_R_DOWN
  647. #define NTC_R_DOWN 10000 // Resistor downstream, set to 0 if none
  648. #endif
  649. #ifndef NTC_T0
  650. #define NTC_T0 298.15 // 25 Celsius
  651. #endif
  652. #ifndef NTC_R0
  653. #define NTC_R0 10000 // Resistance at T0
  654. #endif
  655. #ifndef NTC_BETA
  656. #define NTC_BETA 3977 // Beta coeficient
  657. #endif
  658. //------------------------------------------------------------------------------
  659. // Particle Monitor based on Plantower PMS
  660. // Enable support by passing PMSX003_SUPPORT=1 build flag
  661. //------------------------------------------------------------------------------
  662. #ifndef PMSX003_SUPPORT
  663. #define PMSX003_SUPPORT 0
  664. #endif
  665. #ifndef PMS_TYPE
  666. #define PMS_TYPE PMS_TYPE_X003
  667. #endif
  668. // You can enable smart sleep (read 6-times then sleep on 24-reading-cycles) to extend PMS sensor's life.
  669. // Otherwise the default lifetime of PMS sensor is about 8000-hours/1-years.
  670. // The PMS's fan will stop working on sleeping cycle, and will wake up on reading cycle.
  671. #ifndef PMS_SMART_SLEEP
  672. #define PMS_SMART_SLEEP 0
  673. #endif
  674. #ifndef PMS_USE_SOFT
  675. #define PMS_USE_SOFT 0 // If PMS_USE_SOFT == 1, DEBUG_SERIAL_SUPPORT must be 0
  676. #endif
  677. #ifndef PMS_RX_PIN
  678. #define PMS_RX_PIN 13 // Software serial RX GPIO (if PMS_USE_SOFT == 1)
  679. #endif
  680. #ifndef PMS_TX_PIN
  681. #define PMS_TX_PIN 15 // Software serial TX GPIO (if PMS_USE_SOFT == 1)
  682. #endif
  683. #ifndef PMS_HW_PORT
  684. #define PMS_HW_PORT Serial // Hardware serial port (if PMS_USE_SOFT == 0)
  685. #endif
  686. //------------------------------------------------------------------------------
  687. // Pulse Meter Energy monitor
  688. // Enable support by passing PULSEMETER_SUPPORT=1 build flag
  689. //------------------------------------------------------------------------------
  690. #ifndef PULSEMETER_SUPPORT
  691. #define PULSEMETER_SUPPORT 0
  692. #endif
  693. #ifndef PULSEMETER_PIN
  694. #define PULSEMETER_PIN 5
  695. #endif
  696. #ifndef PULSEMETER_ENERGY_RATIO
  697. #define PULSEMETER_ENERGY_RATIO 4000 // In pulses/kWh
  698. #endif
  699. #ifndef PULSEMETER_INTERRUPT_ON
  700. #define PULSEMETER_INTERRUPT_ON FALLING
  701. #endif
  702. #ifndef PULSEMETER_DEBOUNCE
  703. #define PULSEMETER_DEBOUNCE 50 // Do not register pulses within less than 50 millis
  704. #endif
  705. //------------------------------------------------------------------------------
  706. // PZEM004T based power monitor
  707. // Enable support by passing PZEM004T_SUPPORT=1 build flag
  708. //------------------------------------------------------------------------------
  709. #ifndef PZEM004T_SUPPORT
  710. #define PZEM004T_SUPPORT 0
  711. #endif
  712. #ifndef PZEM004T_USE_SOFT
  713. #define PZEM004T_USE_SOFT 0 // By default, use Hardware serial with GPIO15 (TX) and GPIO13 (RX)
  714. #endif
  715. #ifndef PZEM004T_RX_PIN
  716. #define PZEM004T_RX_PIN 13 // Serial RX GPIO (if PZEM004T_USE_SOFT == 1, creates a SoftwareSerial object)
  717. #endif
  718. #ifndef PZEM004T_TX_PIN
  719. #define PZEM004T_TX_PIN 15 // Serial TX GPIO (if PZEM004T_USE_SOFT == 1, creates a SoftwareSerial object)
  720. #endif
  721. #ifndef PZEM004T_HW_PORT
  722. #define PZEM004T_HW_PORT Serial // Hardware serial port (if PZEM004T_USE_SOFT == 0)
  723. // ESP8266: Serial1 does not allow receiving data, no point in changing this setting
  724. #endif
  725. #ifndef PZEM004T_ADDRESSES
  726. #define PZEM004T_ADDRESSES "192.168.1.1" // Device(s) address(es), separated by space, "192.168.1.1 192.168.1.2 192.168.1.3"
  727. #endif
  728. #ifndef PZEM004T_READ_INTERVAL
  729. #define PZEM004T_READ_INTERVAL 1500 // Read interval between same device
  730. #endif
  731. #ifndef PZEM004T_MAX_DEVICES
  732. #define PZEM004T_MAX_DEVICES 3
  733. #endif
  734. //------------------------------------------------------------------------------
  735. // PZEM004T **V3.0** based power monitor
  736. // Enable support by passing PZEM004TV30_SUPPORT=1 build flag
  737. //------------------------------------------------------------------------------
  738. #ifndef PZEM004TV30_SUPPORT
  739. #define PZEM004TV30_SUPPORT 0
  740. #endif
  741. #ifndef PZEM004TV30_ADDRESS
  742. #define PZEM004TV30_ADDRESS 0xF8 // Default: factory value
  743. #endif
  744. #ifndef PZEM004TV30_USE_SOFT
  745. #define PZEM004TV30_USE_SOFT 0 // By default, use Hardware serial with GPIO15 (TX) and GPIO13 (RX)
  746. // (but, make sure that DEBUG_SERIAL_SUPPORT is set to 0)
  747. #endif
  748. #ifndef PZEM004TV30_RX_PIN
  749. #define PZEM004TV30_RX_PIN 13 // Serial RX GPIO (if PZEM004T_USE_SOFT == 1, creates a SoftwareSerial object)
  750. #endif
  751. #ifndef PZEM004TV30_TX_PIN
  752. #define PZEM004TV30_TX_PIN 15 // Serial TX GPIO (if PZEM004T_USE_SOFT == 1, creates a SoftwareSerial object)
  753. #endif
  754. #ifndef PZEM004TV30_DEBUG
  755. #define PZEM004TV30_DEBUG 0
  756. #endif
  757. //------------------------------------------------------------------------------
  758. // SDS011 particulates sensor
  759. // Enable support by passing SDS011_SUPPORT=1 build flag
  760. //------------------------------------------------------------------------------
  761. #ifndef SDS011_SUPPORT
  762. #define SDS011_SUPPORT 0
  763. #endif
  764. #ifndef SDS011_RX_PIN
  765. #define SDS011_RX_PIN 14
  766. #endif
  767. #ifndef SDS011_TX_PIN
  768. #define SDS011_TX_PIN 12
  769. #endif
  770. //------------------------------------------------------------------------------
  771. // SenseAir CO2 sensor
  772. // Enable support by passing SENSEAIR_SUPPORT=1 build flag
  773. //------------------------------------------------------------------------------
  774. #ifndef SENSEAIR_SUPPORT
  775. #define SENSEAIR_SUPPORT 0
  776. #endif
  777. #ifndef SENSEAIR_RX_PIN
  778. #define SENSEAIR_RX_PIN 0
  779. #endif
  780. #ifndef SENSEAIR_TX_PIN
  781. #define SENSEAIR_TX_PIN 2
  782. #endif
  783. //------------------------------------------------------------------------------
  784. // SHT3X I2C (Wemos) temperature & humidity sensor
  785. // Enable support by passing SHT3X_I2C_SUPPORT=1 build flag
  786. //------------------------------------------------------------------------------
  787. #ifndef SHT3X_I2C_SUPPORT
  788. #define SHT3X_I2C_SUPPORT 0
  789. #endif
  790. #ifndef SHT3X_I2C_ADDRESS
  791. #define SHT3X_I2C_ADDRESS 0x00 // 0x00 means auto
  792. #endif
  793. //------------------------------------------------------------------------------
  794. // SI7021 temperature & humidity sensor
  795. // Enable support by passing SI7021_SUPPORT=1 build flag
  796. //------------------------------------------------------------------------------
  797. #ifndef SI7021_SUPPORT
  798. #define SI7021_SUPPORT 0
  799. #endif
  800. #ifndef SI7021_ADDRESS
  801. #define SI7021_ADDRESS 0x00 // 0x00 means auto
  802. #endif
  803. //------------------------------------------------------------------------------
  804. // HDC1080 / 831R temperature & humidity sensor
  805. // Enable support by passing HDC1080_SUPPORT=1 build flag
  806. //------------------------------------------------------------------------------
  807. #ifndef HDC1080_SUPPORT
  808. #define HDC1080_SUPPORT 0
  809. #endif
  810. #ifndef HDC1080_ADDRESS
  811. #define HDC1080_ADDRESS 0x00 // 0x00 means auto
  812. #endif
  813. //------------------------------------------------------------------------------
  814. // Sonar
  815. // Enable support by passing SONAR_SUPPORT=1 build flag
  816. //------------------------------------------------------------------------------
  817. #ifndef SONAR_SUPPORT
  818. #define SONAR_SUPPORT 0
  819. #endif
  820. #ifndef SONAR_TRIGGER
  821. #define SONAR_TRIGGER 12 // GPIO for the trigger pin (output)
  822. #endif
  823. #ifndef SONAR_ECHO
  824. #define SONAR_ECHO 14 // GPIO for the echo pin (input)
  825. #endif
  826. #ifndef SONAR_MAX_DISTANCE
  827. #define SONAR_MAX_DISTANCE MAX_SENSOR_DISTANCE // Max sensor distance in cm
  828. #endif
  829. #ifndef SONAR_ITERATIONS
  830. #define SONAR_ITERATIONS 5 // Number of iterations to ping for
  831. #endif // error correction.
  832. //------------------------------------------------------------------------------
  833. // T6613 CO2 sensor
  834. // Enable support by passing T6613_SUPPORT=1 build flag
  835. //------------------------------------------------------------------------------
  836. #ifndef T6613_SUPPORT
  837. #define T6613_SUPPORT 0
  838. #endif
  839. #ifndef T6613_RX_PIN
  840. #define T6613_RX_PIN 4
  841. #endif
  842. #ifndef T6613_TX_PIN
  843. #define T6613_TX_PIN 5
  844. #endif
  845. //------------------------------------------------------------------------------
  846. // TMP3X analog temperature sensor
  847. // Enable support by passing TMP3X_SUPPORT=1 build flag
  848. //------------------------------------------------------------------------------
  849. #ifndef TMP3X_SUPPORT
  850. #define TMP3X_SUPPORT 0
  851. #endif
  852. #ifndef TMP3X_TYPE
  853. #define TMP3X_TYPE TMP3X_TMP35
  854. #endif
  855. //------------------------------------------------------------------------------
  856. // V9261F based power sensor
  857. // Enable support by passing SI7021_SUPPORT=1 build flag
  858. //------------------------------------------------------------------------------
  859. #ifndef V9261F_SUPPORT
  860. #define V9261F_SUPPORT 0
  861. #endif
  862. #ifndef V9261F_PIN
  863. #define V9261F_PIN 2 // TX pin from the V9261F
  864. #endif
  865. #ifndef V9261F_PIN_INVERSE
  866. #define V9261F_PIN_INVERSE 1 // Signal is inverted
  867. #endif
  868. #define V9261F_SYNC_INTERVAL 600 // Sync signal length (ms)
  869. #define V9261F_BAUDRATE 4800 // UART baudrate
  870. // Default ratios
  871. #define V9261F_CURRENT_FACTOR 79371434.0
  872. #define V9261F_VOLTAGE_FACTOR 4160651.0
  873. #define V9261F_POWER_FACTOR 153699.0
  874. #define V9261F_RPOWER_FACTOR V9261F_CURRENT_FACTOR
  875. //------------------------------------------------------------------------------
  876. // VEML6075 based power sensor
  877. // Enable support by passing VEML6075_SUPPORT=1 build flag
  878. //------------------------------------------------------------------------------
  879. #ifndef VEML6075_SUPPORT
  880. #define VEML6075_SUPPORT 0
  881. #endif
  882. #ifndef VEML6075_INTEGRATION_TIME
  883. #define VEML6075_INTEGRATION_TIME VEML6075::IT_100MS // The time, in milliseconds, allocated for a single
  884. #endif // measurement. A longer timing budget allows for more
  885. // accurate results at the cost of power.
  886. #ifndef VEML6075_DYNAMIC_MODE
  887. #define VEML6075_DYNAMIC_MODE VEML6075::DYNAMIC_NORMAL // The dynamic mode can either be normal or high. In high
  888. #endif // dynamic mode, the resolution increases by about two
  889. // times.
  890. //------------------------------------------------------------------------------
  891. // VL53L1X
  892. // Enable support by passing VL53L1X_SUPPORT=1 build flag
  893. //------------------------------------------------------------------------------
  894. #ifndef VL53L1X_SUPPORT
  895. #define VL53L1X_SUPPORT 0
  896. #endif
  897. #ifndef VL53L1X_I2C_ADDRESS
  898. #define VL53L1X_I2C_ADDRESS 0x00 // 0x00 means auto
  899. #endif
  900. #ifndef VL53L1X_DISTANCE_MODE
  901. #define VL53L1X_DISTANCE_MODE VL53L1X::Long // The distance mode of the sensor. Can be one of
  902. #endif // `VL53L1X::Short`, `VL53L1X::Medium`, or `VL53L1X::Long.
  903. // Shorter distance modes are less affected by ambient light
  904. // but have lower maximum ranges, especially in the dark.
  905. #ifndef VL53L1X_MEASUREMENT_TIMING_BUDGET
  906. #define VL53L1X_MEASUREMENT_TIMING_BUDGET 140000 // The time, in microseconds, allocated for a single
  907. // measurement. A longer timing budget allows for more
  908. // accurate at the cost of power. The minimum budget is
  909. // 20 ms (20000 us) in short distance mode and 33 ms for
  910. // medium and long distance modes.
  911. #endif
  912. #ifndef VL53L1X_INTER_MEASUREMENT_PERIOD
  913. #define VL53L1X_INTER_MEASUREMENT_PERIOD 50 // Period, in milliseconds, determining how
  914. #endif // often the sensor takes a measurement.
  915. //------------------------------------------------------------------------------
  916. // MAX6675
  917. // Enable support by passing MAX6675_SUPPORT=1 build flag
  918. //------------------------------------------------------------------------------
  919. #ifndef MAX6675_SUPPORT
  920. #define MAX6675_SUPPORT 0
  921. #endif
  922. #ifndef MAX6675_CS_PIN
  923. #define MAX6675_CS_PIN 13
  924. #endif
  925. #ifndef MAX6675_SO_PIN
  926. #define MAX6675_SO_PIN 12
  927. #endif
  928. #ifndef MAX6675_SCK_PIN
  929. #define MAX6675_SCK_PIN 14
  930. #endif
  931. //------------------------------------------------------------------------------
  932. // EZOPH pH meter
  933. // Enable support by passing EZOPH_SUPPORT=1 build flag
  934. //------------------------------------------------------------------------------
  935. #ifndef EZOPH_SUPPORT
  936. #define EZOPH_SUPPORT 0
  937. #endif
  938. #ifndef EZOPH_RX_PIN
  939. #define EZOPH_RX_PIN 13 // Software serial RX GPIO
  940. #endif
  941. #ifndef EZOPH_TX_PIN
  942. #define EZOPH_TX_PIN 15 // Software serial TX GPIO
  943. #endif
  944. #ifndef EZOPH_SYNC_INTERVAL
  945. #define EZOPH_SYNC_INTERVAL 1000 // Amount of time (in ms) sync new readings.
  946. #endif
  947. // -----------------------------------------------------------------------------
  948. // ADE7953 Shelly Sensor
  949. // Enable support by passing ADE7953_SUPPORT=1 build flag
  950. // -----------------------------------------------------------------------------
  951. #ifndef ADE7953_SUPPORT
  952. #define ADE7953_SUPPORT 0
  953. #endif
  954. #ifndef ADE7953_ADDRESS
  955. #define ADE7953_ADDRESS 0x38
  956. #endif
  957. // -----------------------------------------------------------------------------
  958. // SI1145 UV Sensor over I2C
  959. // Enable support by passing SI1145_SUPPORT=1 build flag
  960. // -----------------------------------------------------------------------------
  961. #ifndef SI1145_SUPPORT
  962. #define SI1145_SUPPORT 0
  963. #endif
  964. #ifndef SI1145_ADDRESS
  965. #define SI1145_ADDRESS 0x60
  966. #endif
  967. //------------------------------------------------------------------------------
  968. // BME680
  969. // Enable support by passing BME680_SUPPORT=1 build flag
  970. //------------------------------------------------------------------------------
  971. #ifndef BME680_SUPPORT
  972. #define BME680_SUPPORT 0
  973. #endif
  974. #ifndef BME680_I2C_ADDRESS
  975. #define BME680_I2C_ADDRESS 0x00 // 0x00 means auto
  976. #endif
  977. #ifndef BME680_BSEC_CONFIG
  978. #define BME680_BSEC_CONFIG BME680_BSEC_CONFIG_GENERIC_33V_3S_4D // BSEC config config value. By default, 3.3V as supply voltage,
  979. #endif // 3 seconds as maximum time between bsec_sensor_control` calls
  980. // and 4 days as the time considered for background calibration.
  981. #ifndef BME680_STATE_SAVE_INTERVAL
  982. #define BME680_STATE_SAVE_INTERVAL 0 // How frequently (in milliseconds) should state be stored in
  983. #endif // non-volatile memory. A common value would be every 6h or
  984. // 360 * 60 * 1000 milliseconds. By default, this is disabled.
  985. // -----------------------------------------------------------------------------
  986. // ADC
  987. // -----------------------------------------------------------------------------
  988. // Default ADC mode is to monitor internal power supply
  989. #ifndef ADC_MODE_VALUE
  990. #define ADC_MODE_VALUE ADC_VCC
  991. #endif
  992. // -----------------------------------------------------------------------------
  993. // I2C
  994. // -----------------------------------------------------------------------------
  995. #ifndef I2C_SUPPORT
  996. #define I2C_SUPPORT 0 // I2C enabled (1.98Kb)
  997. #endif
  998. #define I2C_USE_BRZO 0 // Use brzo_i2c library or standard Wire
  999. #ifndef I2C_SDA_PIN
  1000. #define I2C_SDA_PIN SDA // SDA GPIO (Sonoff => 4, using Arduino Core variant definition as default)
  1001. #endif
  1002. #ifndef I2C_SCL_PIN
  1003. #define I2C_SCL_PIN SCL // SCL GPIO (Sonoff => 14, using Arduino Core variant definition as default)
  1004. #endif
  1005. #ifndef I2C_CLOCK_STRETCH_TIME
  1006. #define I2C_CLOCK_STRETCH_TIME 200UL // BRZO clock stretch time
  1007. #endif
  1008. #ifndef I2C_SCL_FREQUENCY
  1009. #define I2C_SCL_FREQUENCY 1000UL // BRZO SCL frequency
  1010. #endif
  1011. #ifndef I2C_CLEAR_BUS
  1012. #define I2C_CLEAR_BUS 0 // Clear I2C bus on boot
  1013. #endif
  1014. #ifndef I2C_PERFORM_SCAN
  1015. #define I2C_PERFORM_SCAN 1 // Perform a bus scan on boot
  1016. #endif
  1017. // =============================================================================
  1018. // Configuration helpers
  1019. // =============================================================================
  1020. // I2C support when sensor needs it
  1021. #if ( ADE7953_SUPPORT || \
  1022. AM2320_SUPPORT || \
  1023. BH1750_SUPPORT || \
  1024. BMP180_SUPPORT || \
  1025. BMX280_SUPPORT || \
  1026. BME680_SUPPORT || \
  1027. EMON_ADC121_SUPPORT || \
  1028. EMON_ADS1X15_SUPPORT || \
  1029. SHT3X_I2C_SUPPORT || \
  1030. SI1145_SUPPORT || \
  1031. SI7021_SUPPORT || \
  1032. VEML6075_SUPPORT || \
  1033. VL53L1X_SUPPORT || \
  1034. HDC1080_SUPPORT \
  1035. )
  1036. #undef I2C_SUPPORT
  1037. #define I2C_SUPPORT 1
  1038. #endif
  1039. // Can't have ADC reading something else
  1040. #if ( ANALOG_SUPPORT || \
  1041. EMON_ANALOG_SUPPORT || \
  1042. GUVAS12SD_SUPPORT || \
  1043. LDR_SUPPORT || \
  1044. MICS2710_SUPPORT || \
  1045. MICS5525_SUPPORT || \
  1046. NTC_SUPPORT || \
  1047. TMP3X_SUPPORT \
  1048. )
  1049. #undef ADC_MODE_VALUE
  1050. #define ADC_MODE_VALUE ADC_TOUT
  1051. #endif
  1052. // Provide generic way to detect sensor presence
  1053. #ifndef SENSOR_SUPPORT
  1054. #define SENSOR_SUPPORT ( \
  1055. ADE7953_SUPPORT || \
  1056. AM2320_SUPPORT || \
  1057. ANALOG_SUPPORT || \
  1058. BH1750_SUPPORT || \
  1059. BMP180_SUPPORT || \
  1060. BME680_SUPPORT || \
  1061. BMX280_SUPPORT || \
  1062. CSE7766_SUPPORT || \
  1063. DALLAS_SUPPORT || \
  1064. DHT_SUPPORT || \
  1065. DIGITAL_SUPPORT || \
  1066. ECH1560_SUPPORT || \
  1067. EMON_ADC121_SUPPORT || \
  1068. EMON_ADS1X15_SUPPORT || \
  1069. EMON_ANALOG_SUPPORT || \
  1070. EVENTS_SUPPORT || \
  1071. EZOPH_SUPPORT || \
  1072. GEIGER_SUPPORT || \
  1073. GUVAS12SD_SUPPORT || \
  1074. HLW8012_SUPPORT || \
  1075. LDR_SUPPORT || \
  1076. MAX6675_SUPPORT || \
  1077. MHZ19_SUPPORT || \
  1078. MICS2710_SUPPORT || \
  1079. MICS5525_SUPPORT || \
  1080. NTC_SUPPORT || \
  1081. PMSX003_SUPPORT || \
  1082. PULSEMETER_SUPPORT || \
  1083. PZEM004T_SUPPORT || \
  1084. SDS011_SUPPORT || \
  1085. SENSEAIR_SUPPORT || \
  1086. SHT3X_I2C_SUPPORT || \
  1087. SI1145_SUPPORT || \
  1088. SI7021_SUPPORT || \
  1089. SONAR_SUPPORT || \
  1090. T6613_SUPPORT || \
  1091. THERMOSTAT_SUPPORT || \
  1092. TMP3X_SUPPORT || \
  1093. V9261F_SUPPORT || \
  1094. VEML6075_SUPPORT || \
  1095. VL53L1X_SUPPORT || \
  1096. HDC1080_SUPPORT || \
  1097. PZEM004TV30_SUPPORT \
  1098. )
  1099. #endif