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.

129 lines
4.6 KiB

7 years ago
  1. //--------------------------------------------------------------------------------
  2. // Custom RF module
  3. // Check http://tinkerman.cat/adding-rf-to-a-non-rf-itead-sonoff/
  4. // Enable support by passing ENABLE_RF=1 build flag
  5. //--------------------------------------------------------------------------------
  6. #define RF_PIN 14
  7. #define RF_CHANNEL 31
  8. #define RF_DEVICE 1
  9. //--------------------------------------------------------------------------------
  10. // DHTXX temperature/humidity sensor
  11. // Enable support by passing ENABLE_DHT=1 build flag
  12. //--------------------------------------------------------------------------------
  13. #define DHT_PIN 14
  14. #define DHT_UPDATE_INTERVAL 60000
  15. #define DHT_TYPE DHT22
  16. #define DHT_TIMING 11
  17. #define DHT_TEMPERATURE_TOPIC "/temperature"
  18. #define DHT_HUMIDITY_TOPIC "/humidity"
  19. #define HUMIDITY_NORMAL 0
  20. #define HUMIDITY_COMFORTABLE 1
  21. #define HUMIDITY_DRY 2
  22. #define HUMIDITY_WET 3
  23. //--------------------------------------------------------------------------------
  24. // Analog sensor
  25. // Enable support by passing ENABLE_ANALOG=1 build flag
  26. //--------------------------------------------------------------------------------
  27. #define ANALOG_PIN 0
  28. #define ANALOG_UPDATE_INTERVAL 60000
  29. #define ANALOG_TOPIC "/analog"
  30. #if ENABLE_ANALOG
  31. #undef ENABLE_ADC_VCC
  32. #define ENABLE_ADC_VCC 0
  33. #endif
  34. //--------------------------------------------------------------------------------
  35. // DS18B20 temperature sensor
  36. // Enable support by passing ENABLE_DS18B20=1 build flag
  37. //--------------------------------------------------------------------------------
  38. #define DS_PIN 14
  39. #define DS_UPDATE_INTERVAL 60000
  40. #define DS_TEMPERATURE_TOPIC "/temperature"
  41. //--------------------------------------------------------------------------------
  42. // Custom current sensor
  43. // Check http://tinkerman.cat/your-laundry-is-done/
  44. // Check http://tinkerman.cat/power-monitoring-sonoff-th-adc121/
  45. // Enable support by passing ENABLE_EMON=1 build flag
  46. //--------------------------------------------------------------------------------
  47. #define EMON_ANALOG_PROVIDER 0
  48. #define EMON_ADC121_PROVIDER 1
  49. // If you select EMON_ADC121_PROVIDER you need to enable and configure I2C in general.h
  50. #define EMON_PROVIDER EMON_ANALOG_PROVIDER
  51. #if EMON_PROVIDER == EMON_ANALOG_PROVIDER
  52. #define EMON_CURRENT_PIN 0
  53. #define EMON_ADC_BITS 10
  54. #define EMON_REFERENCE_VOLTAGE 1.0
  55. #define EMON_CURRENT_PRECISION 1
  56. #define EMON_CURRENT_OFFSET 0.25
  57. #if ENABLE_EMON
  58. #undef ENABLE_ADC_VCC
  59. #define ENABLE_ADC_VCC 0
  60. #endif
  61. #endif
  62. #if EMON_PROVIDER == EMON_ADC121_PROVIDER
  63. #define EMON_ADC121_ADDRESS 0x50
  64. #define EMON_ADC_BITS 12
  65. #define EMON_REFERENCE_VOLTAGE 3.3
  66. #define EMON_CURRENT_PRECISION 2
  67. #define EMON_CURRENT_OFFSET 0.10
  68. #endif
  69. #define EMON_CURRENT_RATIO 30
  70. #define EMON_SAMPLES 1000
  71. #define EMON_INTERVAL 10000
  72. #define EMON_MEASUREMENTS 6
  73. #define EMON_MAINS_VOLTAGE 230
  74. #define EMON_APOWER_TOPIC "/apower"
  75. #define EMON_ENERGY_TOPIC "/energy"
  76. #define EMON_CURRENT_TOPIC "/current"
  77. //--------------------------------------------------------------------------------
  78. // HLW8012 power sensor (Sonoff POW)
  79. // Enable support by passing ENABLE_POW=1 build flag
  80. // Enabled by default when selecting SONOFF_POW hardware
  81. //--------------------------------------------------------------------------------
  82. #define POW_SEL_PIN 5
  83. #define POW_CF1_PIN 13
  84. #define POW_CF_PIN 14
  85. #define POW_USE_INTERRUPTS 1
  86. #define POW_SEL_CURRENT HIGH
  87. #define POW_CURRENT_R 0.001
  88. #define POW_VOLTAGE_R_UP ( 5 * 470000 ) // Real: 2280k
  89. #define POW_VOLTAGE_R_DOWN ( 1000 ) // Real 1.009k
  90. #define POW_POWER_TOPIC "/power"
  91. #define POW_CURRENT_TOPIC "/current"
  92. #define POW_VOLTAGE_TOPIC "/voltage"
  93. #define POW_APOWER_TOPIC "/apower"
  94. #define POW_RPOWER_TOPIC "/rpower"
  95. #define POW_PFACTOR_TOPIC "/pfactor"
  96. #define POW_ENERGY_TOPIC "/energy"
  97. #define POW_UPDATE_INTERVAL 5000
  98. #define POW_REPORT_EVERY 12
  99. //--------------------------------------------------------------------------------
  100. // Internal power montior
  101. // Enable support by passing ENABLE_ADC_VCC=1 build flag
  102. // Do not enable this if using the analog GPIO for any other thing
  103. //--------------------------------------------------------------------------------
  104. #ifndef ENABLE_ADC_VCC
  105. #define ENABLE_ADC_VCC 1
  106. #endif
  107. #if ENABLE_ADC_VCC
  108. ADC_MODE(ADC_VCC);
  109. #endif