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.

145 lines
4.4 KiB

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