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.

1363 lines
45 KiB

6 years ago
6 years ago
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 SENSOR_TEMPERATURE_CORRECTION
  37. #define SENSOR_TEMPERATURE_CORRECTION 0.0 // Offset correction
  38. #endif
  39. #ifndef TEMPERATURE_MIN_CHANGE
  40. #define TEMPERATURE_MIN_CHANGE 0.0 // Minimum temperature change to report
  41. #endif
  42. #ifndef SENSOR_HUMIDITY_CORRECTION
  43. #define SENSOR_HUMIDITY_CORRECTION 0.0 // Offset correction
  44. #endif
  45. #ifndef HUMIDITY_MIN_CHANGE
  46. #define HUMIDITY_MIN_CHANGE 0.0 // Minimum humidity change to report
  47. #endif
  48. #ifndef ENERGY_MAX_CHANGE
  49. #define ENERGY_MAX_CHANGE 0.0 // Maximum energy change to report (if >0 it will allways report when delta(E) is greater than this)
  50. #endif
  51. #ifndef SENSOR_SAVE_EVERY
  52. #define SENSOR_SAVE_EVERY 0 // Save accumulating values to EEPROM (atm only energy)
  53. // A 0 means do not save and it's the default value
  54. // A number different from 0 means it should store the value in EEPROM
  55. // after these many reports
  56. // Warning: this might wear out flash fast!
  57. #endif
  58. #define SENSOR_PUBLISH_ADDRESSES 0 // Publish sensor addresses
  59. #define SENSOR_ADDRESS_TOPIC "address" // Topic to publish sensor addresses
  60. #ifndef SENSOR_TEMPERATURE_UNITS
  61. #define SENSOR_TEMPERATURE_UNITS TMP_CELSIUS // Temperature units (TMP_CELSIUS | TMP_FAHRENHEIT)
  62. #endif
  63. #ifndef SENSOR_ENERGY_UNITS
  64. #define SENSOR_ENERGY_UNITS ENERGY_JOULES // Energy units (ENERGY_JOULES | ENERGY_KWH)
  65. #endif
  66. #ifndef SENSOR_POWER_UNITS
  67. #define SENSOR_POWER_UNITS POWER_WATTS // Power units (POWER_WATTS | POWER_KILOWATTS)
  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_PIN
  218. #define CSE7766_PIN 1 // TX pin from the CSE7766
  219. #endif
  220. #ifndef CSE7766_PIN_INVERSE
  221. #define CSE7766_PIN_INVERSE 0 // Signal is inverted
  222. #endif
  223. #define CSE7766_SYNC_INTERVAL 300 // Safe time between transmissions (ms)
  224. #define CSE7766_BAUDRATE 4800 // UART baudrate
  225. #define CSE7766_V1R 1.0 // 1mR current resistor
  226. #define CSE7766_V2R 1.0 // 1M voltage resistor
  227. //------------------------------------------------------------------------------
  228. // Digital sensor
  229. // Enable support by passing DIGITAL_SUPPORT=1 build flag
  230. //------------------------------------------------------------------------------
  231. #ifndef DIGITAL_SUPPORT
  232. #define DIGITAL_SUPPORT 0
  233. #endif
  234. #ifndef DIGITAL1_PIN
  235. #define DIGITAL1_PIN 2
  236. #endif
  237. #ifndef DIGITAL1_PIN_MODE
  238. #define DIGITAL1_PIN_MODE INPUT_PULLUP
  239. #endif
  240. #ifndef DIGITAL1_DEFAULT_STATE
  241. #define DIGITAL1_DEFAULT_STATE 1
  242. #endif
  243. #ifndef DIGITAL2_PIN
  244. #define DIGITAL2_PIN 2
  245. #endif
  246. #ifndef DIGITAL2_PIN_MODE
  247. #define DIGITAL2_PIN_MODE INPUT_PULLUP
  248. #endif
  249. #ifndef DIGITAL2_DEFAULT_STATE
  250. #define DIGITAL2_DEFAULT_STATE 1
  251. #endif
  252. #ifndef DIGITAL3_PIN
  253. #define DIGITAL3_PIN 2
  254. #endif
  255. #ifndef DIGITAL3_PIN_MODE
  256. #define DIGITAL3_PIN_MODE INPUT_PULLUP
  257. #endif
  258. #ifndef DIGITAL3_DEFAULT_STATE
  259. #define DIGITAL3_DEFAULT_STATE 1
  260. #endif
  261. #ifndef DIGITAL4_PIN
  262. #define DIGITAL4_PIN 2
  263. #endif
  264. #ifndef DIGITAL4_PIN_MODE
  265. #define DIGITAL4_PIN_MODE INPUT_PULLUP
  266. #endif
  267. #ifndef DIGITAL4_DEFAULT_STATE
  268. #define DIGITAL4_DEFAULT_STATE 1
  269. #endif
  270. #ifndef DIGITAL5_PIN
  271. #define DIGITAL5_PIN 2
  272. #endif
  273. #ifndef DIGITAL5_PIN_MODE
  274. #define DIGITAL5_PIN_MODE INPUT_PULLUP
  275. #endif
  276. #ifndef DIGITAL5_DEFAULT_STATE
  277. #define DIGITAL5_DEFAULT_STATE 1
  278. #endif
  279. #ifndef DIGITAL6_PIN
  280. #define DIGITAL6_PIN 2
  281. #endif
  282. #ifndef DIGITAL6_PIN_MODE
  283. #define DIGITAL6_PIN_MODE INPUT_PULLUP
  284. #endif
  285. #ifndef DIGITAL6_DEFAULT_STATE
  286. #define DIGITAL6_DEFAULT_STATE 1
  287. #endif
  288. #ifndef DIGITAL7_PIN
  289. #define DIGITAL7_PIN 2
  290. #endif
  291. #ifndef DIGITAL7_PIN_MODE
  292. #define DIGITAL7_PIN_MODE INPUT_PULLUP
  293. #endif
  294. #ifndef DIGITAL7_DEFAULT_STATE
  295. #define DIGITAL7_DEFAULT_STATE 1
  296. #endif
  297. #ifndef DIGITAL8_PIN
  298. #define DIGITAL8_PIN 2
  299. #endif
  300. #ifndef DIGITAL8_PIN_MODE
  301. #define DIGITAL8_PIN_MODE INPUT_PULLUP
  302. #endif
  303. #ifndef DIGITAL8_DEFAULT_STATE
  304. #define DIGITAL8_DEFAULT_STATE 1
  305. #endif
  306. //------------------------------------------------------------------------------
  307. // ECH1560 based power sensor
  308. // Enable support by passing ECH1560_SUPPORT=1 build flag
  309. //------------------------------------------------------------------------------
  310. #ifndef ECH1560_SUPPORT
  311. #define ECH1560_SUPPORT 0
  312. #endif
  313. #ifndef ECH1560_CLK_PIN
  314. #define ECH1560_CLK_PIN 4 // CLK pin for the ECH1560
  315. #endif
  316. #ifndef ECH1560_MISO_PIN
  317. #define ECH1560_MISO_PIN 5 // MISO pin for the ECH1560
  318. #endif
  319. #ifndef ECH1560_INVERTED
  320. #define ECH1560_INVERTED 0 // Signal is inverted
  321. #endif
  322. //------------------------------------------------------------------------------
  323. // Energy Monitor general settings
  324. //------------------------------------------------------------------------------
  325. #define EMON_MAX_SAMPLES 1000 // Max number of samples to get
  326. #define EMON_MAX_TIME 250 // Max time in ms to sample
  327. #define EMON_FILTER_SPEED 512 // Mobile average filter speed
  328. #define EMON_REFERENCE_VOLTAGE 3.3 // Reference voltage of the ADC
  329. #ifndef EMON_MAINS_VOLTAGE
  330. #define EMON_MAINS_VOLTAGE 230 // Mains voltage
  331. #endif
  332. #ifndef EMON_CURRENT_RATIO
  333. #define EMON_CURRENT_RATIO 30.0 // Current ratio in the clamp (30A/1V)
  334. #endif
  335. #ifndef EMON_REPORT_CURRENT
  336. #define EMON_REPORT_CURRENT 0 // Report current
  337. #endif
  338. #ifndef EMON_REPORT_POWER
  339. #define EMON_REPORT_POWER 1 // Report power
  340. #endif
  341. #ifndef EMON_REPORT_ENERGY
  342. #define EMON_REPORT_ENERGY 1 // Report energy
  343. #endif
  344. //------------------------------------------------------------------------------
  345. // Energy Monitor based on ADC121
  346. // Enable support by passing EMON_ADC121_SUPPORT=1 build flag
  347. //------------------------------------------------------------------------------
  348. #ifndef EMON_ADC121_SUPPORT
  349. #define EMON_ADC121_SUPPORT 0 // Do not build support by default
  350. #endif
  351. #ifndef EMON_ADC121_I2C_ADDRESS
  352. #define EMON_ADC121_I2C_ADDRESS 0x00 // 0x00 means auto
  353. #endif
  354. //------------------------------------------------------------------------------
  355. // Energy Monitor based on ADS1X15
  356. // Enable support by passing EMON_ADS1X15_SUPPORT=1 build flag
  357. //------------------------------------------------------------------------------
  358. #ifndef EMON_ADS1X15_SUPPORT
  359. #define EMON_ADS1X15_SUPPORT 0 // Do not build support by default
  360. #endif
  361. #ifndef EMON_ADS1X15_I2C_ADDRESS
  362. #define EMON_ADS1X15_I2C_ADDRESS 0x00 // 0x00 means auto
  363. #endif
  364. #define EMON_ADS1X15_TYPE ADS1X15_CHIP_ADS1115
  365. #define EMON_ADS1X15_GAIN ADS1X15_REG_CONFIG_PGA_4_096V
  366. #define EMON_ADS1X15_MASK 0x0F // A0=1 A1=2 A2=4 A3=8
  367. //------------------------------------------------------------------------------
  368. // Energy Monitor based on interval analog GPIO
  369. // Enable support by passing EMON_ANALOG_SUPPORT=1 build flag
  370. //------------------------------------------------------------------------------
  371. #ifndef EMON_ANALOG_SUPPORT
  372. #define EMON_ANALOG_SUPPORT 0 // Do not build support by default
  373. #endif
  374. //------------------------------------------------------------------------------
  375. // Counter sensor
  376. // Enable support by passing EVENTS_SUPPORT=1 build flag
  377. //------------------------------------------------------------------------------
  378. #ifndef EVENTS_SUPPORT
  379. #define EVENTS_SUPPORT 0 // Do not build with counter support by default
  380. #endif
  381. #ifndef EVENTS1_TRIGGER
  382. #define EVENTS1_TRIGGER 1 // 1 to trigger callback on events,
  383. // 0 to only count them and report periodically
  384. #endif
  385. #ifndef EVENTS1_PIN
  386. #define EVENTS1_PIN 2 // GPIO to monitor
  387. #endif
  388. #ifndef EVENTS1_PIN_MODE
  389. #define EVENTS1_PIN_MODE INPUT // INPUT, INPUT_PULLUP
  390. #endif
  391. #ifndef EVENTS1_INTERRUPT_MODE
  392. #define EVENTS1_INTERRUPT_MODE RISING // RISING, FALLING, CHANGE
  393. #endif
  394. #ifndef EVENTS1_DEBOUNCE
  395. #define EVENTS1_DEBOUNCE 50 // Do not register events within less than 50 millis
  396. #endif
  397. #ifndef EVENTS2_TRIGGER
  398. #define EVENTS2_TRIGGER 1 // 1 to trigger callback on events,
  399. // 0 to only count them and report periodically
  400. #endif
  401. #ifndef EVENTS2_PIN
  402. #define EVENTS2_PIN 2 // GPIO to monitor
  403. #endif
  404. #ifndef EVENTS2_PIN_MODE
  405. #define EVENTS2_PIN_MODE INPUT // INPUT, INPUT_PULLUP
  406. #endif
  407. #ifndef EVENTS2_INTERRUPT_MODE
  408. #define EVENTS2_INTERRUPT_MODE RISING // RISING, FALLING, CHANGE
  409. #endif
  410. #ifndef EVENTS2_DEBOUNCE
  411. #define EVENTS2_DEBOUNCE 50 // Do not register events within less than 50 millis
  412. #endif
  413. #ifndef EVENTS3_TRIGGER
  414. #define EVENTS3_TRIGGER 1 // 1 to trigger callback on events,
  415. // 0 to only count them and report periodically
  416. #endif
  417. #ifndef EVENTS3_PIN
  418. #define EVENTS3_PIN 2 // GPIO to monitor
  419. #endif
  420. #ifndef EVENTS3_PIN_MODE
  421. #define EVENTS3_PIN_MODE INPUT // INPUT, INPUT_PULLUP
  422. #endif
  423. #ifndef EVENTS3_INTERRUPT_MODE
  424. #define EVENTS3_INTERRUPT_MODE RISING // RISING, FALLING, CHANGE
  425. #endif
  426. #ifndef EVENTS3_DEBOUNCE
  427. #define EVENTS3_DEBOUNCE 50 // Do not register events within less than 50 millis
  428. #endif
  429. #ifndef EVENTS4_TRIGGER
  430. #define EVENTS4_TRIGGER 1 // 1 to trigger callback on events,
  431. // 0 to only count them and report periodically
  432. #endif
  433. #ifndef EVENTS4_PIN
  434. #define EVENTS4_PIN 2 // GPIO to monitor
  435. #endif
  436. #ifndef EVENTS4_PIN_MODE
  437. #define EVENTS4_PIN_MODE INPUT // INPUT, INPUT_PULLUP
  438. #endif
  439. #ifndef EVENTS4_INTERRUPT_MODE
  440. #define EVENTS4_INTERRUPT_MODE RISING // RISING, FALLING, CHANGE
  441. #endif
  442. #ifndef EVENTS4_DEBOUNCE
  443. #define EVENTS4_DEBOUNCE 50 // Do not register events within less than 50 millis
  444. #endif
  445. #ifndef EVENTS5_TRIGGER
  446. #define EVENTS5_TRIGGER 1 // 1 to trigger callback on events,
  447. // 0 to only count them and report periodically
  448. #endif
  449. #ifndef EVENTS5_PIN
  450. #define EVENTS5_PIN 2 // GPIO to monitor
  451. #endif
  452. #ifndef EVENTS5_PIN_MODE
  453. #define EVENTS5_PIN_MODE INPUT // INPUT, INPUT_PULLUP
  454. #endif
  455. #ifndef EVENTS5_INTERRUPT_MODE
  456. #define EVENTS5_INTERRUPT_MODE RISING // RISING, FALLING, CHANGE
  457. #endif
  458. #ifndef EVENTS5_DEBOUNCE
  459. #define EVENTS5_DEBOUNCE 50 // Do not register events within less than 50 millis
  460. #endif
  461. #ifndef EVENTS6_TRIGGER
  462. #define EVENTS6_TRIGGER 1 // 1 to trigger callback on events,
  463. // 0 to only count them and report periodically
  464. #endif
  465. #ifndef EVENTS6_PIN
  466. #define EVENTS6_PIN 2 // GPIO to monitor
  467. #endif
  468. #ifndef EVENTS6_PIN_MODE
  469. #define EVENTS6_PIN_MODE INPUT // INPUT, INPUT_PULLUP
  470. #endif
  471. #ifndef EVENTS6_INTERRUPT_MODE
  472. #define EVENTS6_INTERRUPT_MODE RISING // RISING, FALLING, CHANGE
  473. #endif
  474. #ifndef EVENTS6_DEBOUNCE
  475. #define EVENTS6_DEBOUNCE 50 // Do not register events within less than 50 millis
  476. #endif
  477. #ifndef EVENTS7_TRIGGER
  478. #define EVENTS7_TRIGGER 1 // 1 to trigger callback on events,
  479. // 0 to only count them and report periodically
  480. #endif
  481. #ifndef EVENTS7_PIN
  482. #define EVENTS7_PIN 2 // GPIO to monitor
  483. #endif
  484. #ifndef EVENTS7_PIN_MODE
  485. #define EVENTS7_PIN_MODE INPUT // INPUT, INPUT_PULLUP
  486. #endif
  487. #ifndef EVENTS7_INTERRUPT_MODE
  488. #define EVENTS7_INTERRUPT_MODE RISING // RISING, FALLING, CHANGE
  489. #endif
  490. #ifndef EVENTS7_DEBOUNCE
  491. #define EVENTS7_DEBOUNCE 50 // Do not register events within less than 50 millis
  492. #endif
  493. #ifndef EVENTS8_TRIGGER
  494. #define EVENTS8_TRIGGER 1 // 1 to trigger callback on events,
  495. // 0 to only count them and report periodically
  496. #endif
  497. #ifndef EVENTS8_PIN
  498. #define EVENTS8_PIN 2 // GPIO to monitor
  499. #endif
  500. #ifndef EVENTS8_PIN_MODE
  501. #define EVENTS8_PIN_MODE INPUT // INPUT, INPUT_PULLUP
  502. #endif
  503. #ifndef EVENTS8_INTERRUPT_MODE
  504. #define EVENTS8_INTERRUPT_MODE RISING // RISING, FALLING, CHANGE
  505. #endif
  506. #ifndef EVENTS8_DEBOUNCE
  507. #define EVENTS8_DEBOUNCE 50 // Do not register events within less than 50 millis
  508. #endif
  509. //------------------------------------------------------------------------------
  510. // Geiger sensor
  511. // Enable support by passing GEIGER_SUPPORT=1 build flag
  512. //------------------------------------------------------------------------------
  513. #ifndef GEIGER_SUPPORT
  514. #define GEIGER_SUPPORT 0 // Do not build with geiger support by default
  515. #endif
  516. #ifndef GEIGER_PIN
  517. #define GEIGER_PIN D1 // GPIO to monitor "D1" => "GPIO5"
  518. #endif
  519. #ifndef GEIGER_PIN_MODE
  520. #define GEIGER_PIN_MODE INPUT // INPUT, INPUT_PULLUP
  521. #endif
  522. #ifndef GEIGER_INTERRUPT_MODE
  523. #define GEIGER_INTERRUPT_MODE RISING // RISING, FALLING, CHANGE
  524. #endif
  525. #define GEIGER_DEBOUNCE 25 // Do not register events within less than 25 millis.
  526. // Value derived here: Debounce time 25ms, because https://github.com/Trickx/espurna/wiki/Geiger-counter
  527. #define GEIGER_CPM2SIEVERT 240 // CPM to µSievert per hour conversion factor
  528. // Typically the literature uses the invers, but I find an integer type more convienient.
  529. #define GEIGER_REPORT_SIEVERTS 1 // Enabler for local dose rate reports in µSv/h
  530. #define GEIGER_REPORT_CPM 1 // Enabler for local dose rate reports in counts per minute
  531. //------------------------------------------------------------------------------
  532. // GUVAS12SD UV Sensor (analog)
  533. // Enable support by passing GUVAS12SD_SUPPORT=1 build flag
  534. //------------------------------------------------------------------------------
  535. #ifndef GUVAS12SD_SUPPORT
  536. #define GUVAS12SD_SUPPORT 0
  537. #endif
  538. #ifndef GUVAS12SD_PIN
  539. #define GUVAS12SD_PIN 14
  540. #endif
  541. //------------------------------------------------------------------------------
  542. // HLW8012 Energy monitor IC
  543. // Enable support by passing HLW8012_SUPPORT=1 build flag
  544. //------------------------------------------------------------------------------
  545. #ifndef HLW8012_SUPPORT
  546. #define HLW8012_SUPPORT 0
  547. #endif
  548. #ifndef HLW8012_SEL_PIN
  549. #define HLW8012_SEL_PIN 5
  550. #endif
  551. #ifndef HLW8012_CF1_PIN
  552. #define HLW8012_CF1_PIN 13
  553. #endif
  554. #ifndef HLW8012_CF_PIN
  555. #define HLW8012_CF_PIN 14
  556. #endif
  557. #ifndef HLW8012_SEL_CURRENT
  558. #define HLW8012_SEL_CURRENT HIGH // SEL pin to HIGH to measure current
  559. #endif
  560. #ifndef HLW8012_CURRENT_R
  561. #define HLW8012_CURRENT_R 0.001 // Current resistor
  562. #endif
  563. #ifndef HLW8012_VOLTAGE_R_UP
  564. #define HLW8012_VOLTAGE_R_UP ( 5 * 470000 ) // Upstream voltage resistor
  565. #endif
  566. #ifndef HLW8012_VOLTAGE_R_DOWN
  567. #define HLW8012_VOLTAGE_R_DOWN ( 1000 ) // Downstream voltage resistor
  568. #endif
  569. #ifndef HLW8012_CURRENT_RATIO
  570. #define HLW8012_CURRENT_RATIO 0.0 // Set to 0.0 to use factory defaults
  571. #endif
  572. #ifndef HLW8012_VOLTAGE_RATIO
  573. #define HLW8012_VOLTAGE_RATIO 0.0 // Set to 0.0 to use factory defaults
  574. #endif
  575. #ifndef HLW8012_POWER_RATIO
  576. #define HLW8012_POWER_RATIO 0.0 // Set to 0.0 to use factory defaults
  577. #endif
  578. #ifndef HLW8012_USE_INTERRUPTS
  579. #define HLW8012_USE_INTERRUPTS 1 // Use interrupts to trap HLW8012 signals
  580. #endif
  581. #ifndef HLW8012_WAIT_FOR_WIFI
  582. #define HLW8012_WAIT_FOR_WIFI 0 // Weather to enable interrupts only after
  583. // wifi connection has been stablished
  584. #endif
  585. #ifndef HLW8012_INTERRUPT_ON
  586. #define HLW8012_INTERRUPT_ON CHANGE // When to trigger the interrupt
  587. // Use CHANGE for HLW8012
  588. // Use FALLING for BL0937 / HJL0
  589. #endif
  590. //------------------------------------------------------------------------------
  591. // LDR sensor
  592. // Enable support by passing LDR_SUPPORT=1 build flag
  593. //------------------------------------------------------------------------------
  594. #ifndef SENSOR_LUX_CORRECTION
  595. #define SENSOR_LUX_CORRECTION 0.0 // Offset correction
  596. #endif
  597. #ifndef LDR_SUPPORT
  598. #define LDR_SUPPORT 0
  599. #endif
  600. #ifndef LDR_SAMPLES
  601. #define LDR_SAMPLES 10 // Number of samples
  602. #endif
  603. #ifndef LDR_DELAY
  604. #define LDR_DELAY 0 // Delay between samples in micros
  605. #endif
  606. #ifndef LDR_TYPE
  607. #define LDR_TYPE LDR_GL5528
  608. #endif
  609. #ifndef LDR_ON_GROUND
  610. #define LDR_ON_GROUND true
  611. #endif
  612. #ifndef LDR_RESISTOR
  613. #define LDR_RESISTOR 10000 // Resistance
  614. #endif
  615. #ifndef LDR_MULTIPLICATION
  616. #define LDR_MULTIPLICATION 32017200
  617. #endif
  618. #ifndef LDR_POWER
  619. #define LDR_POWER 1.5832
  620. #endif
  621. //------------------------------------------------------------------------------
  622. // MHZ19 CO2 sensor
  623. // Enable support by passing MHZ19_SUPPORT=1 build flag
  624. //------------------------------------------------------------------------------
  625. #ifndef MHZ19_SUPPORT
  626. #define MHZ19_SUPPORT 0
  627. #endif
  628. #ifndef MHZ19_RX_PIN
  629. #define MHZ19_RX_PIN 13
  630. #endif
  631. #ifndef MHZ19_TX_PIN
  632. #define MHZ19_TX_PIN 15
  633. #endif
  634. //------------------------------------------------------------------------------
  635. // MICS-2710 (and MICS-4514) NO2 sensor
  636. // Enable support by passing MICS2710_SUPPORT=1 build flag
  637. //------------------------------------------------------------------------------
  638. #ifndef MICS2710_SUPPORT
  639. #define MICS2710_SUPPORT 0
  640. #endif
  641. #ifndef MICS2710_NOX_PIN
  642. #define MICS2710_NOX_PIN 0
  643. #endif
  644. #ifndef MICS2710_PRE_PIN
  645. #define MICS2710_PRE_PIN 4
  646. #endif
  647. #define MICS2710_PREHEAT_TIME 10000 // 10s preheat for NOX read
  648. #define MICS2710_RL 820 // RL, load resistor
  649. #define MICS2710_R0 2200 // R0 calibration value for NO2 sensor,
  650. // Typical value as per datasheet
  651. //------------------------------------------------------------------------------
  652. // MICS-5525 (and MICS-4514) CO sensor
  653. // Enable support by passing MICS5525_SUPPORT=1 build flag
  654. //------------------------------------------------------------------------------
  655. #ifndef MICS5525_SUPPORT
  656. #define MICS5525_SUPPORT 0
  657. #endif
  658. #ifndef MICS5525_RED_PIN
  659. #define MICS5525_RED_PIN 0
  660. #endif
  661. #define MICS5525_RL 820 // RL, load resistor
  662. #define MICS5525_R0 750000 // R0 calibration value for NO2 sensor,
  663. // Typical value as per datasheet
  664. //------------------------------------------------------------------------------
  665. // NTC sensor
  666. // Enable support by passing NTC_SUPPORT=1 build flag
  667. //--------------------------------------------------------------------------------
  668. #ifndef NTC_SUPPORT
  669. #define NTC_SUPPORT 0
  670. #endif
  671. #ifndef NTC_SAMPLES
  672. #define NTC_SAMPLES 10 // Number of samples
  673. #endif
  674. #ifndef NTC_DELAY
  675. #define NTC_DELAY 0 // Delay between samples in micros
  676. #endif
  677. #ifndef NTC_R_UP
  678. #define NTC_R_UP 0 // Resistor upstream, set to 0 if none
  679. #endif
  680. #ifndef NTC_R_DOWN
  681. #define NTC_R_DOWN 10000 // Resistor downstream, set to 0 if none
  682. #endif
  683. #ifndef NTC_T0
  684. #define NTC_T0 298.15 // 25 Celsius
  685. #endif
  686. #ifndef NTC_R0
  687. #define NTC_R0 10000 // Resistance at T0
  688. #endif
  689. #ifndef NTC_BETA
  690. #define NTC_BETA 3977 // Beta coeficient
  691. #endif
  692. //------------------------------------------------------------------------------
  693. // Particle Monitor based on Plantower PMS
  694. // Enable support by passing PMSX003_SUPPORT=1 build flag
  695. //------------------------------------------------------------------------------
  696. #ifndef PMSX003_SUPPORT
  697. #define PMSX003_SUPPORT 0
  698. #endif
  699. #ifndef PMS_TYPE
  700. #define PMS_TYPE PMS_TYPE_X003
  701. #endif
  702. // You can enable smart sleep (read 6-times then sleep on 24-reading-cycles) to extend PMS sensor's life.
  703. // Otherwise the default lifetime of PMS sensor is about 8000-hours/1-years.
  704. // The PMS's fan will stop working on sleeping cycle, and will wake up on reading cycle.
  705. #ifndef PMS_SMART_SLEEP
  706. #define PMS_SMART_SLEEP 0
  707. #endif
  708. #ifndef PMS_USE_SOFT
  709. #define PMS_USE_SOFT 0 // If PMS_USE_SOFT == 1, DEBUG_SERIAL_SUPPORT must be 0
  710. #endif
  711. #ifndef PMS_RX_PIN
  712. #define PMS_RX_PIN 13 // Software serial RX GPIO (if PMS_USE_SOFT == 1)
  713. #endif
  714. #ifndef PMS_TX_PIN
  715. #define PMS_TX_PIN 15 // Software serial TX GPIO (if PMS_USE_SOFT == 1)
  716. #endif
  717. #ifndef PMS_HW_PORT
  718. #define PMS_HW_PORT Serial // Hardware serial port (if PMS_USE_SOFT == 0)
  719. #endif
  720. //------------------------------------------------------------------------------
  721. // Pulse Meter Energy monitor
  722. // Enable support by passing PULSEMETER_SUPPORT=1 build flag
  723. //------------------------------------------------------------------------------
  724. #ifndef PULSEMETER_SUPPORT
  725. #define PULSEMETER_SUPPORT 0
  726. #endif
  727. #ifndef PULSEMETER_PIN
  728. #define PULSEMETER_PIN 5
  729. #endif
  730. #ifndef PULSEMETER_ENERGY_RATIO
  731. #define PULSEMETER_ENERGY_RATIO 4000 // In pulses/kWh
  732. #endif
  733. #ifndef PULSEMETER_INTERRUPT_ON
  734. #define PULSEMETER_INTERRUPT_ON FALLING
  735. #endif
  736. #ifndef PULSEMETER_DEBOUNCE
  737. #define PULSEMETER_DEBOUNCE 50 // Do not register pulses within less than 50 millis
  738. #endif
  739. //------------------------------------------------------------------------------
  740. // PZEM004T based power monitor
  741. // Enable support by passing PZEM004T_SUPPORT=1 build flag
  742. //------------------------------------------------------------------------------
  743. #ifndef PZEM004T_SUPPORT
  744. #define PZEM004T_SUPPORT 0
  745. #endif
  746. #ifndef PZEM004T_USE_SOFT
  747. #define PZEM004T_USE_SOFT 0 // Software serial is not working atm, use hardware serial
  748. #endif
  749. #ifndef PZEM004T_RX_PIN
  750. #define PZEM004T_RX_PIN 13 // Software serial RX GPIO (if PZEM004T_USE_SOFT == 1)
  751. #endif
  752. #ifndef PZEM004T_TX_PIN
  753. #define PZEM004T_TX_PIN 15 // Software serial TX GPIO (if PZEM004T_USE_SOFT == 1)
  754. #endif
  755. #ifndef PZEM004T_HW_PORT
  756. #define PZEM004T_HW_PORT Serial // Hardware serial port (if PZEM004T_USE_SOFT == 0)
  757. #endif
  758. #ifndef PZEM004T_ADDRESSES
  759. #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"
  760. #endif
  761. #ifndef PZEM004T_READ_INTERVAL
  762. #define PZEM004T_READ_INTERVAL 1500 // Read interval between same device
  763. #endif
  764. #ifndef PZEM004T_MAX_DEVICES
  765. #define PZEM004T_MAX_DEVICES 3
  766. #endif
  767. //------------------------------------------------------------------------------
  768. // SDS011 particulates sensor
  769. // Enable support by passing SDS011_SUPPORT=1 build flag
  770. //------------------------------------------------------------------------------
  771. #ifndef SDS011_SUPPORT
  772. #define SDS011_SUPPORT 0
  773. #endif
  774. #ifndef SDS011_RX_PIN
  775. #define SDS011_RX_PIN 14
  776. #endif
  777. #ifndef SDS011_TX_PIN
  778. #define SDS011_TX_PIN 12
  779. #endif
  780. //------------------------------------------------------------------------------
  781. // SenseAir CO2 sensor
  782. // Enable support by passing SENSEAIR_SUPPORT=1 build flag
  783. //------------------------------------------------------------------------------
  784. #ifndef SENSEAIR_SUPPORT
  785. #define SENSEAIR_SUPPORT 0
  786. #endif
  787. #ifndef SENSEAIR_RX_PIN
  788. #define SENSEAIR_RX_PIN 0
  789. #endif
  790. #ifndef SENSEAIR_TX_PIN
  791. #define SENSEAIR_TX_PIN 2
  792. #endif
  793. //------------------------------------------------------------------------------
  794. // SHT3X I2C (Wemos) temperature & humidity sensor
  795. // Enable support by passing SHT3X_I2C_SUPPORT=1 build flag
  796. //------------------------------------------------------------------------------
  797. #ifndef SHT3X_I2C_SUPPORT
  798. #define SHT3X_I2C_SUPPORT 0
  799. #endif
  800. #ifndef SHT3X_I2C_ADDRESS
  801. #define SHT3X_I2C_ADDRESS 0x00 // 0x00 means auto
  802. #endif
  803. //------------------------------------------------------------------------------
  804. // SI7021 temperature & humidity sensor
  805. // Enable support by passing SI7021_SUPPORT=1 build flag
  806. //------------------------------------------------------------------------------
  807. #ifndef SI7021_SUPPORT
  808. #define SI7021_SUPPORT 0
  809. #endif
  810. #ifndef SI7021_ADDRESS
  811. #define SI7021_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_CS_PIN
  920. #define MAX6675_CS_PIN 13
  921. #endif
  922. #ifndef MAX6675_SO_PIN
  923. #define MAX6675_SO_PIN 12
  924. #endif
  925. #ifndef MAX6675_SCK_PIN
  926. #define MAX6675_SCK_PIN 14
  927. #endif
  928. //------------------------------------------------------------------------------
  929. // EZOPH pH meter
  930. // Enable support by passing EZOPH_SUPPORT=1 build flag
  931. //------------------------------------------------------------------------------
  932. #ifndef EZOPH_SUPPORT
  933. #define EZOPH_SUPPORT 0
  934. #endif
  935. #ifndef EZOPH_RX_PIN
  936. #define EZOPH_RX_PIN 13 // Software serial RX GPIO
  937. #endif
  938. #ifndef EZOPH_TX_PIN
  939. #define EZOPH_TX_PIN 15 // Software serial TX GPIO
  940. #endif
  941. #ifndef EZOPH_SYNC_INTERVAL
  942. #define EZOPH_SYNC_INTERVAL 1000 // Amount of time (in ms) sync new readings.
  943. #endif
  944. // -----------------------------------------------------------------------------
  945. // ADC
  946. // -----------------------------------------------------------------------------
  947. // Default ADC mode is to monitor internal power supply
  948. #ifndef ADC_MODE_VALUE
  949. #define ADC_MODE_VALUE ADC_VCC
  950. #endif
  951. // -----------------------------------------------------------------------------
  952. // I2C
  953. // -----------------------------------------------------------------------------
  954. #ifndef I2C_SUPPORT
  955. #define I2C_SUPPORT 0 // I2C enabled (1.98Kb)
  956. #endif
  957. #define I2C_USE_BRZO 0 // Use brzo_i2c library or standard Wire
  958. #ifndef I2C_SDA_PIN
  959. #define I2C_SDA_PIN SDA // SDA GPIO (Sonoff => 4, using Arduino Core variant definition as default)
  960. #endif
  961. #ifndef I2C_SCL_PIN
  962. #define I2C_SCL_PIN SCL // SCL GPIO (Sonoff => 14, using Arduino Core variant definition as default)
  963. #endif
  964. #ifndef I2C_CLOCK_STRETCH_TIME
  965. #define I2C_CLOCK_STRETCH_TIME 200UL // BRZO clock stretch time
  966. #endif
  967. #ifndef I2C_SCL_FREQUENCY
  968. #define I2C_SCL_FREQUENCY 1000UL // BRZO SCL frequency
  969. #endif
  970. #ifndef I2C_CLEAR_BUS
  971. #define I2C_CLEAR_BUS 0 // Clear I2C bus on boot
  972. #endif
  973. #ifndef I2C_PERFORM_SCAN
  974. #define I2C_PERFORM_SCAN 1 // Perform a bus scan on boot
  975. #endif
  976. // -----------------------------------------------------------------------------
  977. // ADE7953 Shelly Sensor
  978. // Enable support by passing ADE7953_SUPPORT=1 build flag
  979. // -----------------------------------------------------------------------------
  980. #ifndef ADE7953_SUPPORT
  981. #define ADE7953_SUPPORT 0
  982. #endif
  983. #ifndef ADE7953_ADDRESS
  984. #define ADE7953_ADDRESS 0x38
  985. #endif
  986. // =============================================================================
  987. // Configuration helpers
  988. // =============================================================================
  989. // I2C support when sensor needs it
  990. #if ( ADE7953_SUPPORT || \
  991. AM2320_SUPPORT || \
  992. BH1750_SUPPORT || \
  993. BMP180_SUPPORT || \
  994. BMX280_SUPPORT || \
  995. EMON_ADC121_SUPPORT || \
  996. EMON_ADS1X15_SUPPORT || \
  997. SHT3X_I2C_SUPPORT || \
  998. SI7021_SUPPORT || \
  999. VEML6075_SUPPORT || \
  1000. VL53L1X_SUPPORT \
  1001. )
  1002. #undef I2C_SUPPORT
  1003. #define I2C_SUPPORT 1
  1004. #endif
  1005. // Can't have ADC reading something else
  1006. #if ( ANALOG_SUPPORT || \
  1007. EMON_ANALOG_SUPPORT || \
  1008. GUVAS12SD_SUPPORT || \
  1009. LDR_SUPPORT || \
  1010. MICS2710_SUPPORT || \
  1011. MICS5525_SUPPORT || \
  1012. NTC_SUPPORT || \
  1013. TMP3X_SUPPORT \
  1014. )
  1015. #undef ADC_MODE_VALUE
  1016. #define ADC_MODE_VALUE ADC_TOUT
  1017. #endif
  1018. // Provide generic way to detect sensor presence
  1019. #ifndef SENSOR_SUPPORT
  1020. #define SENSOR_SUPPORT ( \
  1021. ADE7953_SUPPORT || \
  1022. AM2320_SUPPORT || \
  1023. ANALOG_SUPPORT || \
  1024. BH1750_SUPPORT || \
  1025. BMP180_SUPPORT || \
  1026. BMX280_SUPPORT || \
  1027. CSE7766_SUPPORT || \
  1028. DALLAS_SUPPORT || \
  1029. DHT_SUPPORT || \
  1030. DIGITAL_SUPPORT || \
  1031. ECH1560_SUPPORT || \
  1032. EMON_ADC121_SUPPORT || \
  1033. EMON_ADS1X15_SUPPORT || \
  1034. EMON_ANALOG_SUPPORT || \
  1035. EVENTS_SUPPORT || \
  1036. EZOPH_SUPPORT || \
  1037. GEIGER_SUPPORT || \
  1038. GUVAS12SD_SUPPORT || \
  1039. HLW8012_SUPPORT || \
  1040. LDR_SUPPORT || \
  1041. MAX6675_SUPPORT || \
  1042. MHZ19_SUPPORT || \
  1043. MICS2710_SUPPORT || \
  1044. MICS5525_SUPPORT || \
  1045. NTC_SUPPORT || \
  1046. PMSX003_SUPPORT || \
  1047. PULSEMETER_SUPPORT || \
  1048. PZEM004T_SUPPORT || \
  1049. SDS011_SUPPORT || \
  1050. SENSEAIR_SUPPORT || \
  1051. SHT3X_I2C_SUPPORT || \
  1052. SI7021_SUPPORT || \
  1053. SONAR_SUPPORT || \
  1054. T6613_SUPPORT || \
  1055. THERMOSTAT_SUPPORT || \
  1056. TMP3X_SUPPORT || \
  1057. V9261F_SUPPORT || \
  1058. VEML6075_SUPPORT || \
  1059. VL53L1X_SUPPORT \
  1060. )
  1061. #endif