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.

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