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.

172 lines
5.2 KiB

  1. //--------------------------------------------------------------------------------
  2. // HARDWARE
  3. // This setting is normally provided by PlatformIO
  4. // Uncomment the appropiate line to build from the Arduino IDE
  5. //--------------------------------------------------------------------------------
  6. //#define NODEMCUV2
  7. //#define SONOFF
  8. //#define SONOFF_TH
  9. //#define SONOFF_POW
  10. //#define SONOFF_DUAL
  11. //#define SONOFF_4CH
  12. //#define SLAMPHER
  13. //#define S20
  14. //#define ESP_RELAY_BOARD
  15. //#define ECOPLUG
  16. //#define ESPURNA
  17. // -----------------------------------------------------------------------------
  18. // NODEMCUv2 development board
  19. // -----------------------------------------------------------------------------
  20. #if defined(NODEMCUV2)
  21. #define MANUFACTURER "NODEMCU"
  22. #define DEVICE "LOLIN"
  23. #define BUTTON1_PIN 0
  24. #define RELAY1_PIN 12
  25. #define LED1_PIN 2
  26. #define LED1_PIN_INVERSE 0
  27. // -----------------------------------------------------------------------------
  28. // Itead Studio boards
  29. // -----------------------------------------------------------------------------
  30. #elif defined(SONOFF)
  31. #define MANUFACTURER "ITEAD"
  32. #define DEVICE "SONOFF"
  33. #define BUTTON1_PIN 0
  34. #define RELAY1_PIN 12
  35. #define LED1_PIN 13
  36. #define LED1_PIN_INVERSE 0
  37. #elif defined(SONOFF_TH)
  38. #define MANUFACTURER "ITEAD"
  39. #define DEVICE "SONOFF_TH"
  40. #define BUTTON1_PIN 0
  41. #define RELAY1_PIN 12
  42. #define LED1_PIN 13
  43. #define LED1_PIN_INVERSE 0
  44. #elif defined(SONOFF_TOUCH)
  45. #define MANUFACTURER "ITEAD"
  46. #define DEVICE "SONOFF_TOUCH"
  47. #define BUTTON1_PIN 0
  48. #define RELAY1_PIN 12
  49. #define LED1_PIN 13
  50. #define LED1_PIN_INVERSE 1
  51. #elif defined(SONOFF_POW)
  52. #define MANUFACTURER "ITEAD"
  53. #define DEVICE "SONOFF_POW"
  54. #define BUTTON1_PIN 0
  55. #define RELAY1_PIN 12
  56. #define LED1_PIN 15
  57. #define LED1_PIN_INVERSE 1
  58. #define ENABLE_POW 1
  59. #elif defined(SONOFF_DUAL)
  60. #define MANUFACTURER "ITEAD"
  61. #define DEVICE "SONOFF_DUAL"
  62. #define BUTTON1_PIN 0
  63. #define LED1_PIN 13
  64. #define LED1_PIN_INVERSE 0
  65. #undef SERIAL_BAUDRATE
  66. #define SERIAL_BAUDRATE 19230
  67. #elif defined(SONOFF_4CH)
  68. #define MANUFACTURER "ITEAD"
  69. #define DEVICE "SONOFF_4CH"
  70. #define BUTTON1_PIN 0
  71. #define BUTTON2_PIN 9
  72. #define BUTTON3_PIN 10
  73. #define BUTTON4_PIN 14
  74. #define RELAY1_PIN 12
  75. #define RELAY2_PIN 5
  76. #define RELAY3_PIN 4
  77. #define RELAY4_PIN 15
  78. #define LED1_PIN 13
  79. #define LED1_PIN_INVERSE 1
  80. #elif defined(SONOFF_SV)
  81. #define MANUFACTURER "ITEAD"
  82. #define DEVICE "SONOFF_SV"
  83. #define BUTTON1_PIN 0
  84. #define RELAY1_PIN 12
  85. #define LED1_PIN 13
  86. #define LED1_PIN_INVERSE 1
  87. #elif defined(SLAMPHER)
  88. #define MANUFACTURER "ITEAD"
  89. #define DEVICE "SLAMPHER"
  90. #define BUTTON1_PIN 0
  91. #define RELAY1_PIN 12
  92. #define LED1_PIN 13
  93. #define LED1_PIN_INVERSE 0
  94. #elif defined(S20)
  95. #define MANUFACTURER "ITEAD"
  96. #define DEVICE "S20"
  97. #define BUTTON1_PIN 0
  98. #define RELAY1_PIN 12
  99. #define LED1_PIN 13
  100. #define LED1_PIN_INVERSE 0
  101. // -----------------------------------------------------------------------------
  102. // Electrodragon boards
  103. // -----------------------------------------------------------------------------
  104. #elif defined(ESP_RELAY_BOARD)
  105. #define MANUFACTURER "ELECTRODRAGON"
  106. #define DEVICE "ESP_RELAY_BOARD"
  107. #define BUTTON1_PIN 0
  108. #define BUTTON2_PIN 2
  109. #define RELAY1_PIN 12
  110. #define RELAY2_PIN 13
  111. #define LED1_PIN 16
  112. #define LED1_PIN_INVERSE 1
  113. // -----------------------------------------------------------------------------
  114. // WorkChoice ecoPlug
  115. // -----------------------------------------------------------------------------
  116. #elif defined(ECOPLUG)
  117. #define MANUFACTURER "WORKCHOICE"
  118. #define DEVICE "ECOPLUG"
  119. #define BUTTON1_PIN 13
  120. #define RELAY_PIN 15
  121. #define LED1_PIN 2
  122. #define LED1_PIN_INVERSE 1
  123. // -----------------------------------------------------------------------------
  124. // ESPurna board (still beta)
  125. // -----------------------------------------------------------------------------
  126. #elif defined(ESPURNA)
  127. #define MANUFACTURER "TINKERMAN"
  128. #define DEVICE "ESPURNA"
  129. #define BUTTON1_PIN 0
  130. #define RELAY1_PIN 12
  131. #define LED1_PIN 13
  132. #define LED1_PIN_INVERSE 0
  133. // -----------------------------------------------------------------------------
  134. // Unknown hardware
  135. // -----------------------------------------------------------------------------
  136. #else
  137. #error "UNSUPPORTED HARDWARE!"
  138. #endif