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.

726 lines
24 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
  1. // =============================================================================
  2. // SENSORS - General data
  3. // =============================================================================
  4. #define SENSOR_DEBUG 0 // Debug sensors
  5. #define SENSOR_READ_INTERVAL 6 // Read data from sensors every 6 seconds
  6. #define SENSOR_READ_MIN_INTERVAL 6 // Minimum read interval
  7. #define SENSOR_READ_MAX_INTERVAL 3600 // Maximum read interval
  8. #define SENSOR_INIT_INTERVAL 10000 // Try to re-init non-ready sensors every 10s
  9. #define SENSOR_REPORT_EVERY 10 // Report every this many readings
  10. #define SENSOR_REPORT_MIN_EVERY 1 // Minimum every value
  11. #define SENSOR_REPORT_MAX_EVERY 12 // Maximum
  12. #define SENSOR_USE_INDEX 0 // Use the index in topic (i.e. temperature/0)
  13. // even if just one sensor (0 for backwards compatibility)
  14. #ifndef SENSOR_POWER_CHECK_STATUS
  15. #define SENSOR_POWER_CHECK_STATUS 1 // If set to 1 the reported power/current/energy will be 0 if the relay[0] is OFF
  16. #endif
  17. #ifndef SENSOR_TEMPERATURE_CORRECTION
  18. #define SENSOR_TEMPERATURE_CORRECTION 0.0 // Offset correction
  19. #endif
  20. #ifndef TEMPERATURE_MIN_CHANGE
  21. #define TEMPERATURE_MIN_CHANGE 0.0 // Minimum temperature change to report
  22. #endif
  23. #ifndef SENSOR_HUMIDITY_CORRECTION
  24. #define SENSOR_HUMIDITY_CORRECTION 0.0 // Offset correction
  25. #endif
  26. #ifndef HUMIDITY_MIN_CHANGE
  27. #define HUMIDITY_MIN_CHANGE 0 // Minimum humidity change to report
  28. #endif
  29. #define SENSOR_PUBLISH_ADDRESSES 0 // Publish sensor addresses
  30. #define SENSOR_ADDRESS_TOPIC "address" // Topic to publish sensor addresses
  31. #ifndef SENSOR_TEMPERATURE_UNITS
  32. #define SENSOR_TEMPERATURE_UNITS TMP_CELSIUS // Temperature units (TMP_CELSIUS | TMP_FAHRENHEIT)
  33. #endif
  34. #ifndef SENSOR_ENERGY_UNITS
  35. #define SENSOR_ENERGY_UNITS ENERGY_JOULES // Energy units (ENERGY_JOULES | ENERGY_KWH)
  36. #endif
  37. #ifndef SENSOR_POWER_UNITS
  38. #define SENSOR_POWER_UNITS POWER_WATTS // Power units (POWER_WATTS | POWER_KILOWATTS)
  39. #endif
  40. // =============================================================================
  41. // Specific data for each sensor
  42. // =============================================================================
  43. //------------------------------------------------------------------------------
  44. // AM2320 Humidity & Temperature sensor over I2C
  45. // Enable support by passing AM2320_SUPPORT=1 build flag
  46. //------------------------------------------------------------------------------
  47. #ifndef AM2320_SUPPORT
  48. #define AM2320_SUPPORT 0
  49. #endif
  50. #ifndef AM2320_ADDRESS
  51. #define AM2320_ADDRESS 0x00 // 0x00 means auto
  52. #endif
  53. //------------------------------------------------------------------------------
  54. // Analog sensor
  55. // Enable support by passing ANALOG_SUPPORT=1 build flag
  56. //--------------------------------------------------------------------------------
  57. #ifndef ANALOG_SUPPORT
  58. #define ANALOG_SUPPORT 0
  59. #endif
  60. //------------------------------------------------------------------------------
  61. // BH1750
  62. // Enable support by passing BH1750_SUPPORT=1 build flag
  63. // http://www.elechouse.com/elechouse/images/product/Digital%20light%20Sensor/bh1750fvi-e.pdf
  64. //------------------------------------------------------------------------------
  65. #ifndef BH1750_SUPPORT
  66. #define BH1750_SUPPORT 0
  67. #endif
  68. #ifndef BH1750_ADDRESS
  69. #define BH1750_ADDRESS 0x00 // 0x00 means auto
  70. #endif
  71. #define BH1750_MODE BH1750_CONTINUOUS_HIGH_RES_MODE
  72. //------------------------------------------------------------------------------
  73. // BME280/BMP280
  74. // Enable support by passing BMX280_SUPPORT=1 build flag
  75. //------------------------------------------------------------------------------
  76. #ifndef BMX280_SUPPORT
  77. #define BMX280_SUPPORT 0
  78. #endif
  79. #ifndef BMX280_ADDRESS
  80. #define BMX280_ADDRESS 0x00 // 0x00 means auto
  81. #endif
  82. #define BMX280_MODE 1 // 0 for sleep mode, 1 or 2 for forced mode, 3 for normal mode
  83. #define BMX280_STANDBY 0 // 0 for 0.5ms, 1 for 62.5ms, 2 for 125ms
  84. // 3 for 250ms, 4 for 500ms, 5 for 1000ms
  85. // 6 for 10ms, 7 for 20ms
  86. #define BMX280_FILTER 0 // 0 for OFF, 1 for 2 values, 2 for 4 values, 3 for 8 values and 4 for 16 values
  87. #define BMX280_TEMPERATURE 1 // Oversampling for temperature (set to 0 to disable magnitude)
  88. #define BMX280_HUMIDITY 1 // Oversampling for humidity (set to 0 to disable magnitude, only for BME280)
  89. #define BMX280_PRESSURE 1 // Oversampling for pressure (set to 0 to disable magnitude)
  90. //------------------------------------------------------------------------------
  91. // Dallas OneWire temperature sensors
  92. // Enable support by passing DALLAS_SUPPORT=1 build flag
  93. //------------------------------------------------------------------------------
  94. #ifndef DALLAS_SUPPORT
  95. #define DALLAS_SUPPORT 0
  96. #endif
  97. #ifndef DALLAS_PIN
  98. #define DALLAS_PIN 14
  99. #endif
  100. #define DALLAS_RESOLUTION 9 // Not used atm
  101. #define DALLAS_READ_INTERVAL 2000 // Force sensor read & cache every 2 seconds
  102. //------------------------------------------------------------------------------
  103. // DHTXX temperature/humidity sensor
  104. // Enable support by passing DHT_SUPPORT=1 build flag
  105. //------------------------------------------------------------------------------
  106. #ifndef DHT_SUPPORT
  107. #define DHT_SUPPORT 0
  108. #endif
  109. #ifndef DHT_PIN
  110. #define DHT_PIN 14
  111. #endif
  112. #ifndef DHT_TYPE
  113. #define DHT_TYPE DHT_CHIP_DHT22
  114. #endif
  115. //------------------------------------------------------------------------------
  116. // CSE7766 based power sensor
  117. // Enable support by passing CSE7766_SUPPORT=1 build flag
  118. //------------------------------------------------------------------------------
  119. #ifndef CSE7766_SUPPORT
  120. #define CSE7766_SUPPORT 0
  121. #endif
  122. #ifndef CSE7766_PIN
  123. #define CSE7766_PIN 1 // TX pin from the CSE7766
  124. #endif
  125. #ifndef CSE7766_PIN_INVERSE
  126. #define CSE7766_PIN_INVERSE 0 // Signal is inverted
  127. #endif
  128. #define CSE7766_SYNC_INTERVAL 300 // Safe time between transmissions (ms)
  129. #define CSE7766_BAUDRATE 4800 // UART baudrate
  130. #define CSE7766_V1R 1.0 // 1mR current resistor
  131. #define CSE7766_V2R 1.0 // 1M voltage resistor
  132. //------------------------------------------------------------------------------
  133. // Digital sensor
  134. // Enable support by passing DIGITAL_SUPPORT=1 build flag
  135. //------------------------------------------------------------------------------
  136. #ifndef DIGITAL_SUPPORT
  137. #define DIGITAL_SUPPORT 0
  138. #endif
  139. #ifndef DIGITAL_PIN
  140. #define DIGITAL_PIN 2
  141. #endif
  142. #ifndef DIGITAL_PIN_MODE
  143. #define DIGITAL_PIN_MODE INPUT_PULLUP
  144. #endif
  145. #ifndef DIGITAL_DEFAULT_STATE
  146. #define DIGITAL_DEFAULT_STATE 1
  147. #endif
  148. //------------------------------------------------------------------------------
  149. // ECH1560 based power sensor
  150. // Enable support by passing ECH1560_SUPPORT=1 build flag
  151. //------------------------------------------------------------------------------
  152. #ifndef ECH1560_SUPPORT
  153. #define ECH1560_SUPPORT 0
  154. #endif
  155. #ifndef ECH1560_CLK_PIN
  156. #define ECH1560_CLK_PIN 4 // CLK pin for the ECH1560
  157. #endif
  158. #ifndef ECH1560_MISO_PIN
  159. #define ECH1560_MISO_PIN 5 // MISO pin for the ECH1560
  160. #endif
  161. #ifndef ECH1560_INVERTED
  162. #define ECH1560_INVERTED 0 // Signal is inverted
  163. #endif
  164. //------------------------------------------------------------------------------
  165. // Energy Monitor general settings
  166. //------------------------------------------------------------------------------
  167. #define EMON_MAX_SAMPLES 1000 // Max number of samples to get
  168. #define EMON_MAX_TIME 250 // Max time in ms to sample
  169. #define EMON_FILTER_SPEED 512 // Mobile average filter speed
  170. #define EMON_MAINS_VOLTAGE 230 // Mains voltage
  171. #define EMON_REFERENCE_VOLTAGE 3.3 // Reference voltage of the ADC
  172. #define EMON_CURRENT_RATIO 30 // Current ratio in the clamp (30V/1A)
  173. #define EMON_REPORT_CURRENT 0 // Report current
  174. #define EMON_REPORT_POWER 1 // Report power
  175. #define EMON_REPORT_ENERGY 1 // Report energy
  176. //------------------------------------------------------------------------------
  177. // Energy Monitor based on ADC121
  178. // Enable support by passing EMON_ADC121_SUPPORT=1 build flag
  179. //------------------------------------------------------------------------------
  180. #ifndef EMON_ADC121_SUPPORT
  181. #define EMON_ADC121_SUPPORT 0 // Do not build support by default
  182. #endif
  183. #define EMON_ADC121_I2C_ADDRESS 0x00 // 0x00 means auto
  184. //------------------------------------------------------------------------------
  185. // Energy Monitor based on ADS1X15
  186. // Enable support by passing EMON_ADS1X15_SUPPORT=1 build flag
  187. //------------------------------------------------------------------------------
  188. #ifndef EMON_ADS1X15_SUPPORT
  189. #define EMON_ADS1X15_SUPPORT 0 // Do not build support by default
  190. #endif
  191. #define EMON_ADS1X15_I2C_ADDRESS 0x00 // 0x00 means auto
  192. #define EMON_ADS1X15_TYPE ADS1X15_CHIP_ADS1115
  193. #define EMON_ADS1X15_GAIN ADS1X15_REG_CONFIG_PGA_4_096V
  194. #define EMON_ADS1X15_MASK 0x0F // A0=1 A1=2 A2=4 A3=8
  195. //------------------------------------------------------------------------------
  196. // Energy Monitor based on interval analog GPIO
  197. // Enable support by passing EMON_ANALOG_SUPPORT=1 build flag
  198. //------------------------------------------------------------------------------
  199. #ifndef EMON_ANALOG_SUPPORT
  200. #define EMON_ANALOG_SUPPORT 0 // Do not build support by default
  201. #endif
  202. //------------------------------------------------------------------------------
  203. // Counter sensor
  204. // Enable support by passing EVENTS_SUPPORT=1 build flag
  205. //------------------------------------------------------------------------------
  206. #ifndef EVENTS_SUPPORT
  207. #define EVENTS_SUPPORT 0 // Do not build with counter support by default
  208. #endif
  209. #ifndef EVENTS_PIN
  210. #define EVENTS_PIN 2 // GPIO to monitor
  211. #endif
  212. #ifndef EVENTS_PIN_MODE
  213. #define EVENTS_PIN_MODE INPUT // INPUT, INPUT_PULLUP
  214. #endif
  215. #ifndef EVENTS_INTERRUPT_MODE
  216. #define EVENTS_INTERRUPT_MODE RISING // RISING, FALLING, BOTH
  217. #endif
  218. #define EVENTS_DEBOUNCE 50 // Do not register events within less than 50 millis
  219. //------------------------------------------------------------------------------
  220. // Geiger sensor
  221. // Enable support by passing GEIGER_SUPPORT=1 build flag
  222. //------------------------------------------------------------------------------
  223. #ifndef GEIGER_SUPPORT
  224. #define GEIGER_SUPPORT 0 // Do not build with geiger support by default
  225. #endif
  226. #ifndef GEIGER_PIN
  227. #define GEIGER_PIN D1 // GPIO to monitor "D1" => "GPIO5"
  228. #endif
  229. #ifndef GEIGER_PIN_MODE
  230. #define GEIGER_PIN_MODE INPUT // INPUT, INPUT_PULLUP
  231. #endif
  232. #ifndef GEIGER_INTERRUPT_MODE
  233. #define GEIGER_INTERRUPT_MODE RISING // RISING, FALLING, BOTH
  234. #endif
  235. #define GEIGER_DEBOUNCE 25 // Do not register events within less than 25 millis.
  236. // Value derived here: Debounce time 25ms, because https://github.com/Trickx/espurna/wiki/Geiger-counter
  237. #define GEIGER_CPM2SIEVERT 240 // CPM to µSievert per hour conversion factor
  238. // Typically the literature uses the invers, but I find an integer type more convienient.
  239. #define GEIGER_REPORT_SIEVERTS 1 // Enabler for local dose rate reports in µSv/h
  240. #define GEIGER_REPORT_CPM 1 // Enabler for local dose rate reports in counts per minute
  241. //------------------------------------------------------------------------------
  242. // GUVAS12SD UV Sensor (analog)
  243. // Enable support by passing GUVAS12SD_SUPPORT=1 build flag
  244. //------------------------------------------------------------------------------
  245. #ifndef GUVAS12SD_SUPPORT
  246. #define GUVAS12SD_SUPPORT 0
  247. #endif
  248. #ifndef GUVAS12SD_PIN
  249. #define GUVAS12SD_PIN 14
  250. #endif
  251. //------------------------------------------------------------------------------
  252. // HC-SR04
  253. // Enable support by passing HCSR04_SUPPORT=1 build flag
  254. //------------------------------------------------------------------------------
  255. #ifndef HCSR04_SUPPORT
  256. #define HCSR04_SUPPORT 0
  257. #endif
  258. #ifndef HCSR04_TRIGGER
  259. #define HCSR04_TRIGGER 12 // GPIO for the trigger pin (output)
  260. #endif
  261. #ifndef HCSR04_ECHO
  262. #define HCSR04_ECHO 14 // GPIO for the echo pin (input)
  263. #endif
  264. //------------------------------------------------------------------------------
  265. // HLW8012 Energy monitor IC
  266. // Enable support by passing HLW8012_SUPPORT=1 build flag
  267. //------------------------------------------------------------------------------
  268. #ifndef HLW8012_SUPPORT
  269. #define HLW8012_SUPPORT 0
  270. #endif
  271. #ifndef HLW8012_SEL_PIN
  272. #define HLW8012_SEL_PIN 5
  273. #endif
  274. #ifndef HLW8012_CF1_PIN
  275. #define HLW8012_CF1_PIN 13
  276. #endif
  277. #ifndef HLW8012_CF_PIN
  278. #define HLW8012_CF_PIN 14
  279. #endif
  280. #ifndef HLW8012_SEL_CURRENT
  281. #define HLW8012_SEL_CURRENT HIGH // SEL pin to HIGH to measure current
  282. #endif
  283. #ifndef HLW8012_CURRENT_R
  284. #define HLW8012_CURRENT_R 0.001 // Current resistor
  285. #endif
  286. #ifndef HLW8012_VOLTAGE_R_UP
  287. #define HLW8012_VOLTAGE_R_UP ( 5 * 470000 ) // Upstream voltage resistor
  288. #endif
  289. #ifndef HLW8012_VOLTAGE_R_DOWN
  290. #define HLW8012_VOLTAGE_R_DOWN ( 1000 ) // Downstream voltage resistor
  291. #endif
  292. #define HLW8012_USE_INTERRUPTS 1 // Use interrupts to trap HLW8012 signals
  293. //------------------------------------------------------------------------------
  294. // MHZ19 CO2 sensor
  295. // Enable support by passing MHZ19_SUPPORT=1 build flag
  296. //------------------------------------------------------------------------------
  297. #ifndef MHZ19_SUPPORT
  298. #define MHZ19_SUPPORT 0
  299. #endif
  300. #ifndef MHZ19_RX_PIN
  301. #define MHZ19_RX_PIN 13
  302. #endif
  303. #ifndef MHZ19_TX_PIN
  304. #define MHZ19_TX_PIN 15
  305. #endif
  306. //------------------------------------------------------------------------------
  307. // SenseAir CO2 sensor
  308. // Enable support by passing SENSEAIR_SUPPORT=1 build flag
  309. //------------------------------------------------------------------------------
  310. #ifndef SENSEAIR_SUPPORT
  311. #define SENSEAIR_SUPPORT 0
  312. #endif
  313. #ifndef SENSEAIR_RX_PIN
  314. #define SENSEAIR_RX_PIN 0
  315. #endif
  316. #ifndef SENSEAIR_TX_PIN
  317. #define SENSEAIR_TX_PIN 2
  318. #endif
  319. //------------------------------------------------------------------------------
  320. // Particle Monitor based on Plantower PMS
  321. // Enable support by passing PMSX003_SUPPORT=1 build flag
  322. //------------------------------------------------------------------------------
  323. #ifndef PMSX003_SUPPORT
  324. #define PMSX003_SUPPORT 0
  325. #endif
  326. #ifndef PMS_TYPE
  327. #define PMS_TYPE PMS_TYPE_X003
  328. #endif
  329. // You can enable smart sleep (read 6-times then sleep on 24-reading-cycles) to extend PMS sensor's life.
  330. // Otherwise the default lifetime of PMS sensor is about 8000-hours/1-years.
  331. // The PMS's fan will stop working on sleeping cycle, and will wake up on reading cycle.
  332. #ifndef PMS_SMART_SLEEP
  333. #define PMS_SMART_SLEEP 0
  334. #endif
  335. #ifndef PMS_RX_PIN
  336. #define PMS_RX_PIN 13
  337. #endif
  338. #ifndef PMS_TX_PIN
  339. #define PMS_TX_PIN 15
  340. #endif
  341. //------------------------------------------------------------------------------
  342. // PZEM004T based power monitor
  343. // Enable support by passing PZEM004T_SUPPORT=1 build flag
  344. //------------------------------------------------------------------------------
  345. #ifndef PZEM004T_SUPPORT
  346. #define PZEM004T_SUPPORT 0
  347. #endif
  348. #ifndef PZEM004T_USE_SOFT
  349. #define PZEM004T_USE_SOFT 1 // Use software serial
  350. #endif
  351. #ifndef PZEM004T_RX_PIN
  352. #define PZEM004T_RX_PIN 13 // Software serial RX GPIO (if PZEM004T_USE_SOFT == 1)
  353. #endif
  354. #ifndef PZEM004T_TX_PIN
  355. #define PZEM004T_TX_PIN 15 // Software serial TX GPIO (if PZEM004T_USE_SOFT == 1)
  356. #endif
  357. #ifndef PZEM004T_HW_PORT
  358. #define PZEM004T_HW_PORT Serial1 // Hardware serial port (if PZEM004T_USE_SOFT == 0)
  359. #endif
  360. //------------------------------------------------------------------------------
  361. // SHT3X I2C (Wemos) temperature & humidity sensor
  362. // Enable support by passing SHT3X_SUPPORT=1 build flag
  363. //------------------------------------------------------------------------------
  364. #ifndef SHT3X_I2C_SUPPORT
  365. #define SHT3X_I2C_SUPPORT 0
  366. #endif
  367. #ifndef SHT3X_I2C_ADDRESS
  368. #define SHT3X_I2C_ADDRESS 0x00 // 0x00 means auto
  369. #endif
  370. //------------------------------------------------------------------------------
  371. // SI7021 temperature & humidity sensor
  372. // Enable support by passing SI7021_SUPPORT=1 build flag
  373. //------------------------------------------------------------------------------
  374. #ifndef SI7021_SUPPORT
  375. #define SI7021_SUPPORT 0
  376. #endif
  377. #ifndef SI7021_ADDRESS
  378. #define SI7021_ADDRESS 0x00 // 0x00 means auto
  379. #endif
  380. //------------------------------------------------------------------------------
  381. // TMP3X analog temperature sensor
  382. // Enable support by passing TMP3X_SUPPORT=1 build flag
  383. //------------------------------------------------------------------------------
  384. #ifndef TMP3X_SUPPORT
  385. #define TMP3X_SUPPORT 0
  386. #endif
  387. #ifndef TMP3X_TYPE
  388. #define TMP3X_TYPE TMP3X_TMP35
  389. #endif
  390. //------------------------------------------------------------------------------
  391. // V9261F based power sensor
  392. // Enable support by passing SI7021_SUPPORT=1 build flag
  393. //------------------------------------------------------------------------------
  394. #ifndef V9261F_SUPPORT
  395. #define V9261F_SUPPORT 0
  396. #endif
  397. #ifndef V9261F_PIN
  398. #define V9261F_PIN 2 // TX pin from the V9261F
  399. #endif
  400. #ifndef V9261F_PIN_INVERSE
  401. #define V9261F_PIN_INVERSE 1 // Signal is inverted
  402. #endif
  403. #define V9261F_SYNC_INTERVAL 600 // Sync signal length (ms)
  404. #define V9261F_BAUDRATE 4800 // UART baudrate
  405. // Default ratios
  406. #define V9261F_CURRENT_FACTOR 79371434.0
  407. #define V9261F_VOLTAGE_FACTOR 4160651.0
  408. #define V9261F_POWER_FACTOR 153699.0
  409. #define V9261F_RPOWER_FACTOR V9261F_CURRENT_FACTOR
  410. // =============================================================================
  411. // Sensor helpers configuration - can't move to dependencies.h
  412. // =============================================================================
  413. #ifndef SENSOR_SUPPORT
  414. #define SENSOR_SUPPORT ( \
  415. AM2320_SUPPORT || \
  416. ANALOG_SUPPORT || \
  417. BH1750_SUPPORT || \
  418. BMX280_SUPPORT || \
  419. CSE7766_SUPPORT || \
  420. DALLAS_SUPPORT || \
  421. DHT_SUPPORT || \
  422. DIGITAL_SUPPORT || \
  423. ECH1560_SUPPORT || \
  424. EMON_ADC121_SUPPORT || \
  425. EMON_ADS1X15_SUPPORT || \
  426. EMON_ANALOG_SUPPORT || \
  427. EVENTS_SUPPORT || \
  428. GEIGER_SUPPORT || \
  429. GUVAS12SD_SUPPORT || \
  430. HCSR04_SUPPORT || \
  431. HLW8012_SUPPORT || \
  432. MHZ19_SUPPORT || \
  433. SENSEAIR_SUPPORT || \
  434. PMSX003_SUPPORT || \
  435. PZEM004T_SUPPORT || \
  436. SHT3X_I2C_SUPPORT || \
  437. SI7021_SUPPORT || \
  438. TMP3X_SUPPORT || \
  439. V9261F_SUPPORT \
  440. )
  441. #endif
  442. // -----------------------------------------------------------------------------
  443. // ADC
  444. // -----------------------------------------------------------------------------
  445. // Default ADC mode is to monitor internal power supply
  446. #ifndef ADC_MODE_VALUE
  447. #define ADC_MODE_VALUE ADC_VCC
  448. #endif
  449. // -----------------------------------------------------------------------------
  450. // I2C
  451. // -----------------------------------------------------------------------------
  452. #ifndef I2C_SUPPORT
  453. #define I2C_SUPPORT 0 // I2C enabled (1.98Kb)
  454. #endif
  455. #define I2C_USE_BRZO 0 // Use brzo_i2c library or standard Wire
  456. #ifndef I2C_SDA_PIN
  457. #define I2C_SDA_PIN SDA // SDA GPIO (Sonoff => 4)
  458. #endif
  459. #ifndef I2C_SCL_PIN
  460. #define I2C_SCL_PIN SCL // SCL GPIO (Sonoff => 14)
  461. #endif
  462. #define I2C_CLOCK_STRETCH_TIME 200 // BRZO clock stretch time
  463. #define I2C_SCL_FREQUENCY 1000 // BRZO SCL frequency
  464. #define I2C_CLEAR_BUS 0 // Clear I2C bus on boot
  465. #define I2C_PERFORM_SCAN 1 // Perform a bus scan on boot
  466. //--------------------------------------------------------------------------------
  467. // Class loading
  468. //--------------------------------------------------------------------------------
  469. #if SENSOR_SUPPORT
  470. #if SENSOR_DEBUG
  471. #include "../config/debug.h"
  472. #endif
  473. #include "../sensors/BaseSensor.h"
  474. #if AM2320_SUPPORT
  475. #include "../sensors/AM2320Sensor.h"
  476. #endif
  477. #if ANALOG_SUPPORT
  478. #include "../sensors/AnalogSensor.h"
  479. #endif
  480. #if BH1750_SUPPORT
  481. #include "../sensors/BH1750Sensor.h"
  482. #endif
  483. #if BMX280_SUPPORT
  484. #include "../sensors/BMX280Sensor.h"
  485. #endif
  486. #if CSE7766_SUPPORT
  487. #include <SoftwareSerial.h>
  488. #include "../sensors/CSE7766Sensor.h"
  489. #endif
  490. #if DALLAS_SUPPORT
  491. #include <OneWire.h>
  492. #include "../sensors/DallasSensor.h"
  493. #endif
  494. #if DHT_SUPPORT
  495. #include "../sensors/DHTSensor.h"
  496. #endif
  497. #if DIGITAL_SUPPORT
  498. #include "../sensors/DigitalSensor.h"
  499. #endif
  500. #if ECH1560_SUPPORT
  501. #include "../sensors/ECH1560Sensor.h"
  502. #endif
  503. #if EMON_ADC121_SUPPORT
  504. #include "../sensors/EmonADC121Sensor.h"
  505. #endif
  506. #if EMON_ADS1X15_SUPPORT
  507. #include "../sensors/EmonADS1X15Sensor.h"
  508. #endif
  509. #if EMON_ANALOG_SUPPORT
  510. #include "../sensors/EmonAnalogSensor.h"
  511. #endif
  512. #if EVENTS_SUPPORT
  513. #include "../sensors/EventSensor.h"
  514. #endif
  515. #if GEIGER_SUPPORT
  516. #include "../sensors/GeigerSensor.h" // The main file for geiger counting module
  517. #endif
  518. #if GUVAS12SD_SUPPORT
  519. #include "../sensors/GUVAS12SDSensor.h"
  520. #endif
  521. #if HCSR04_SUPPORT
  522. #include "../sensors/HCSR04Sensor.h"
  523. #endif
  524. #if HLW8012_SUPPORT
  525. #include <HLW8012.h>
  526. #include "../sensors/HLW8012Sensor.h"
  527. #endif
  528. #if MHZ19_SUPPORT
  529. #include <SoftwareSerial.h>
  530. #include "../sensors/MHZ19Sensor.h"
  531. #endif
  532. #if SENSEAIR_SUPPORT
  533. #include <SoftwareSerial.h>
  534. #include "../sensors/SenseAirSensor.h"
  535. #endif
  536. #if PMSX003_SUPPORT
  537. #include <SoftwareSerial.h>
  538. #include "../sensors/PMSX003Sensor.h"
  539. #endif
  540. #if PZEM004T_SUPPORT
  541. #include <SoftwareSerial.h>
  542. #include "../sensors/PZEM004TSensor.h"
  543. #endif
  544. #if SI7021_SUPPORT
  545. #include "../sensors/SI7021Sensor.h"
  546. #endif
  547. #if SHT3X_I2C_SUPPORT
  548. #include "../sensors/SHT3XI2CSensor.h"
  549. #endif
  550. #if TMP3X_SUPPORT
  551. #include "../sensors/TMP3XSensor.h"
  552. #endif
  553. #if V9261F_SUPPORT
  554. #include <SoftwareSerial.h>
  555. #include "../sensors/V9261FSensor.h"
  556. #endif
  557. #endif // SENSOR_SUPPORT