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.

209 lines
6.7 KiB

7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
  1. //--------------------------------------------------------------------------------
  2. // General
  3. //--------------------------------------------------------------------------------
  4. #ifndef TEMPERATURE_MIN_CHANGE
  5. #define TEMPERATURE_MIN_CHANGE 0.0 // Minimum temperature change to report
  6. #endif
  7. #ifndef HUMIDITY_MIN_CHANGE
  8. #define HUMIDITY_MIN_CHANGE 0 // Minimum humidity change to report
  9. #endif
  10. #define TEMPERATURE_DECIMALS 1 // Decimals for temperature values
  11. //--------------------------------------------------------------------------------
  12. // DHTXX temperature/humidity sensor
  13. // Enable support by passing DHT_SUPPORT=1 build flag
  14. //--------------------------------------------------------------------------------
  15. #ifndef DHT_SUPPORT
  16. #define DHT_SUPPORT 0
  17. #endif
  18. #ifndef DHT_PIN
  19. #define DHT_PIN 14
  20. #endif
  21. #ifndef DHT_TYPE
  22. #define DHT_TYPE DHT22
  23. #endif
  24. #ifndef DHT_PULLUP
  25. #define DHT_PULLUP 0
  26. #endif
  27. #ifndef DHT_UPDATE_INTERVAL
  28. #define DHT_UPDATE_INTERVAL 60000
  29. #endif
  30. #define DHT_TEMPERATURE_TOPIC "temperature"
  31. #define DHT_HUMIDITY_TOPIC "humidity"
  32. #define HUMIDITY_NORMAL 0
  33. #define HUMIDITY_COMFORTABLE 1
  34. #define HUMIDITY_DRY 2
  35. #define HUMIDITY_WET 3
  36. //--------------------------------------------------------------------------------
  37. // SI7021 temperature & humidity sensor
  38. // Enable support by passing SI7021_SUPPORT=1 build flag
  39. //--------------------------------------------------------------------------------
  40. #ifndef SI7021_SUPPORT
  41. #define SI7021_SUPPORT 0
  42. #endif
  43. #ifndef SI7021_ADDRESS
  44. #define SI7021_ADDRESS 0x40
  45. #endif
  46. //--------------------------------------------------------------------------------
  47. // DS18B20 temperature sensor
  48. // Enable support by passing DS18B20_SUPPORT=1 build flag
  49. //--------------------------------------------------------------------------------
  50. #ifndef DS18B20_SUPPORT
  51. #define DS18B20_SUPPORT 0
  52. #endif
  53. #ifndef DS18B20_PIN
  54. #define DS18B20_PIN 13
  55. #endif
  56. #ifndef DS18B20_PULLUP
  57. #define DS18B20_PULLUP 1
  58. #endif
  59. #ifndef DS18B20_UPDATE_INTERVAL
  60. #define DS18B20_UPDATE_INTERVAL 60000
  61. #endif
  62. #ifndef DS18B20_TEMPERATURE_TOPIC
  63. #define DS18B20_TEMPERATURE_TOPIC "temperature"
  64. #endif
  65. #define DS18B20_RESOLUTION 9
  66. //--------------------------------------------------------------------------------
  67. // Analog sensor
  68. // Enable support by passing ANALOG_SUPPORT=1 build flag
  69. //--------------------------------------------------------------------------------
  70. #ifndef ANALOG_SUPPORT
  71. #define ANALOG_SUPPORT 0
  72. #endif
  73. #ifndef ANALOG_PIN
  74. #define ANALOG_PIN 0
  75. #endif
  76. #ifndef ANALOG_UPDATE_INTERVAL
  77. #define ANALOG_UPDATE_INTERVAL 60000
  78. #endif
  79. #define ANALOG_TOPIC "analog"
  80. #if ANALOG_SUPPORT
  81. #undef ADC_VCC_ENABLED
  82. #define ADC_VCC_ENABLED 0
  83. #endif
  84. //--------------------------------------------------------------------------------
  85. // Counter sensor
  86. // Enable support by passing COUNTER_SUPPORT=1 build flag
  87. //--------------------------------------------------------------------------------
  88. #ifndef COUNTER_SUPPORT
  89. #define COUNTER_SUPPORT 0 // Do not build with counter support by default
  90. #endif
  91. #ifndef COUNTER_PIN
  92. #define COUNTER_PIN 2 // GPIO to monitor
  93. #endif
  94. #ifndef COUNTER_PIN_MODE
  95. #define COUNTER_PIN_MODE INPUT // INPUT, INPUT_PULLUP
  96. #endif
  97. #ifndef COUNTER_INTERRUPT_MODE
  98. #define COUNTER_INTERRUPT_MODE RISING // RISING, FALLING, BOTH
  99. #endif
  100. #ifndef COUNTER_UPDATE_INTERVAL
  101. #define COUNTER_UPDATE_INTERVAL 5000 // Update counter every this millis
  102. #endif
  103. #define COUNTER_REPORT_EVERY 12 // Report counter every this updates (1 minute)
  104. #define COUNTER_DEBOUNCE 10 // Do not register events within less than 10 millis
  105. #define COUNTER_TOPIC "counter" // Default topic for MQTT, API and InfluxDB
  106. //--------------------------------------------------------------------------------
  107. // Energy Monitor
  108. //--------------------------------------------------------------------------------
  109. #define EMON_FILTER_SPEED 512
  110. #define EMON_MODE_SAMPLES 1
  111. #define EMON_MODE_MSECONDS 2
  112. //--------------------------------------------------------------------------------
  113. // Energy Monitor based on interval analog GPIO
  114. // Enable support by passing EMON_ANALOG_SUPPORT=1 build flag
  115. //--------------------------------------------------------------------------------
  116. #ifndef EMON_ANALOG_SUPPORT
  117. #define EMON_ANALOG_SUPPORT 0 // Do not build support by default
  118. #endif
  119. #define EMON_ANALOG_MAINS_VOLTAGE 230 // Mains voltage
  120. #define EMON_ANALOG_CURRENT_RATIO 30 // Current ratio in the clamp (30V/1A)
  121. #define EMON_ANALOG_ADC_BITS 10 // ADC depth
  122. #define EMON_ANALOG_REFERENCE_VOLTAGE 3.3 // Reference voltage of the ADC
  123. #define EMON_ANALOG_READ_VALUE 1000
  124. #define EMON_ANALOG_READ_MODE EMON_MODE_SAMPLES
  125. #define EMON_ANALOG_WARMUP_VALUE 1000
  126. #define EMON_ANALOG_WARMUP_MODE EMON_MODE_MSECONDS
  127. #if EMON_ANALOG_SUPPORT
  128. #undef ADC_VCC_ENABLED
  129. #define ADC_VCC_ENABLED 0
  130. #endif
  131. //--------------------------------------------------------------------------------
  132. // Energy Monitor based on ADC121
  133. // Enable support by passing EMON_ADC121_SUPPORT=1 build flag
  134. //--------------------------------------------------------------------------------
  135. #ifndef EMON_ADC121_SUPPORT
  136. #define EMON_ADC121_SUPPORT 1 // Do not build support by default
  137. #endif
  138. #define EMON_ADC121_I2C_ADDRESS 0x50 // I2C address of the ADC121
  139. #define EMON_ADC121_MAINS_VOLTAGE 230 // Mains voltage
  140. #define EMON_ADC121_CURRENT_RATIO 30 // Current ratio in the clamp (30V/1A)
  141. #define EMON_ADC121_ADC_BITS 12 // ADC depth
  142. #define EMON_ADC121_REFERENCE_VOLTAGE 3.3 // Reference voltage of the ADC
  143. #define EMON_ADC121_READ_VALUE 200
  144. #define EMON_ADC121_READ_MODE EMON_MODE_MSECONDS
  145. #define EMON_ADC121_WARMUP_VALUE 1000
  146. #define EMON_ADC121_WARMUP_MODE EMON_MODE_MSECONDS
  147. //--------------------------------------------------------------------------------
  148. // Internal power montior
  149. // Enable support by passing ADC_VCC_ENABLED=1 build flag
  150. // Do not enable this if using the analog GPIO for any other thing
  151. //--------------------------------------------------------------------------------
  152. #ifndef ADC_VCC_ENABLED
  153. #define ADC_VCC_ENABLED 1
  154. #endif
  155. #if ADC_VCC_ENABLED
  156. ADC_MODE(ADC_VCC);
  157. #endif