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.

120 lines
3.7 KiB

  1. // -----------------------------------------------------------------------------
  2. // NODEMCUv2 development board
  3. // -----------------------------------------------------------------------------
  4. #if defined(NODEMCUV2)
  5. #define MANUFACTURER "NODEMCU"
  6. #define DEVICE "LOLIN"
  7. #define BUTTON_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 BUTTON_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 BUTTON_PIN 0
  25. #define RELAY1_PIN 12
  26. #define LED_PIN 13
  27. #define LED_PIN_INVERSE 0
  28. #elif defined(SONOFF_POW)
  29. #define MANUFACTURER "ITEAD"
  30. #define DEVICE "SONOFF_POW"
  31. #define BUTTON_PIN 0
  32. #define RELAY1_PIN 12
  33. #define LED_PIN 15
  34. #define LED_PIN_INVERSE 1
  35. #define ENABLE_POW 1
  36. #elif defined(SONOFF_DUAL)
  37. #define MANUFACTURER "ITEAD"
  38. #define DEVICE "SONOFF_DUAL"
  39. #define BUTTON_PIN 0
  40. #define LED_PIN 13
  41. #define LED_PIN_INVERSE 0
  42. #undef SERIAL_BAUDRATE
  43. #define SERIAL_BAUDRATE 19230
  44. #elif defined(SLAMPHER)
  45. #define MANUFACTURER "ITEAD"
  46. #define DEVICE "SLAMPHER"
  47. #define BUTTON_PIN 0
  48. #define RELAY1_PIN 12
  49. #define LED_PIN 13
  50. #define LED_PIN_INVERSE 0
  51. #elif defined(S20)
  52. #define MANUFACTURER "ITEAD"
  53. #define DEVICE "S20"
  54. #define BUTTON_PIN 0
  55. #define RELAY1_PIN 12
  56. #define LED_PIN 13
  57. #define LED_PIN_INVERSE 0
  58. // -----------------------------------------------------------------------------
  59. // Electrodragon boards
  60. // -----------------------------------------------------------------------------
  61. #elif defined(ESP_RELAY_BOARD)
  62. #define MANUFACTURER "ELECTRODRAGON"
  63. #define DEVICE "ESP_RELAY_BOARD"
  64. #define BUTTON_PIN 2
  65. #define RELAY1_PIN 12
  66. #define RELAY2_PIN 13
  67. #define LED_PIN 16
  68. #define LED_PIN_INVERSE 1
  69. // -----------------------------------------------------------------------------
  70. // WorkChoice ecoPlug
  71. // -----------------------------------------------------------------------------
  72. #elif defined(ECOPLUG)
  73. #define MANUFACTURER "WORKCHOICE"
  74. #define DEVICE "ECOPLUG"
  75. #define BUTTON_PIN 13
  76. #define RELAY_PIN 15
  77. #define LED_PIN 2
  78. #define LED_PIN_INVERSE 1
  79. // -----------------------------------------------------------------------------
  80. // ESPurna board (still beta)
  81. // -----------------------------------------------------------------------------
  82. #elif defined(ESPURNA)
  83. #define MANUFACTURER "TINKERMAN"
  84. #define DEVICE "ESPURNA"
  85. #define BUTTON_PIN 0
  86. #define RELAY1_PIN 12
  87. #define LED_PIN 13
  88. #define LED_PIN_INVERSE 0
  89. // -----------------------------------------------------------------------------
  90. // Unknown hardware
  91. // -----------------------------------------------------------------------------
  92. #else
  93. #error "UNSUPPORTED HARDWARE!"
  94. #endif