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
4.3 KiB

8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
7 years ago
8 years ago
8 years ago
8 years ago
8 years ago
  1. //------------------------------------------------------------------------------
  2. // GENERAL
  3. //------------------------------------------------------------------------------
  4. #define SERIAL_BAUDRATE 115200
  5. #define HOSTNAME DEVICE
  6. #define BUFFER_SIZE 1024
  7. #define HEARTBEAT_INTERVAL 300000
  8. //--------------------------------------------------------------------------------
  9. // RELAY
  10. //--------------------------------------------------------------------------------
  11. #define RELAY_MODE_OFF 0
  12. #define RELAY_MODE_ON 1
  13. #define RELAY_MODE_SAME 2
  14. #define RELAY_SYNC_ANY 0
  15. #define RELAY_SYNC_NONE_OR_ONE 1
  16. #define RELAY_SYNC_ONE 2
  17. #define RELAY_SYNC_SAME 3
  18. // 0 means OFF, 1 ON and 2 whatever was before
  19. #define RELAY_MODE RELAY_MODE_OFF
  20. // 0 means ANY, 1 zero or one and 2 one and only one
  21. #define RELAY_SYNC RELAY_SYNC_ANY
  22. //--------------------------------------------------------------------------------
  23. // LED
  24. //--------------------------------------------------------------------------------
  25. // All defined LEDs in the board can be managed through MQTT
  26. // except the first one when LED_AUTO is set to 1.
  27. // If LED_AUTO is set to 1 the board will use first defined LED to show wifi status.
  28. #define LED_AUTO 1
  29. // -----------------------------------------------------------------------------
  30. // WIFI & WEB
  31. // -----------------------------------------------------------------------------
  32. #define WIFI_RECONNECT_INTERVAL 300000
  33. #define WIFI_MAX_NETWORKS 5
  34. #define ADMIN_PASS "fibonacci"
  35. #define HTTP_USERNAME "admin"
  36. #define WS_BUFFER_SIZE 5
  37. #define WS_TIMEOUT 1800000
  38. #define DNS_PORT 53
  39. // -----------------------------------------------------------------------------
  40. // OTA & NOFUSS
  41. // -----------------------------------------------------------------------------
  42. #define OTA_PORT 8266
  43. #define NOFUSS_SERVER "http://192.168.1.100"
  44. #define NOFUSS_INTERVAL 3600000
  45. // -----------------------------------------------------------------------------
  46. // MQTT
  47. // -----------------------------------------------------------------------------
  48. #define MQTT_SERVER "192.168.1.100"
  49. #define MQTT_PORT 1883
  50. #define MQTT_TOPIC "/test/switch/{identifier}"
  51. #define MQTT_RETAIN true
  52. #define MQTT_QOS 0
  53. #define MQTT_KEEPALIVE 30
  54. #define MQTT_RECONNECT_DELAY 10000
  55. #define MQTT_SKIP_RETAINED 1
  56. #define MQTT_SKIP_TIME 1000
  57. #define MQTT_RELAY_TOPIC "/relay"
  58. #define MQTT_LED_TOPIC "/led"
  59. #define MQTT_BUTTON_TOPIC "/button"
  60. #define MQTT_IP_TOPIC "/ip"
  61. #define MQTT_VERSION_TOPIC "/version"
  62. #define MQTT_FSVERSION_TOPIC "/fsversion"
  63. #define MQTT_HEARTBEAT_TOPIC "/heartbeat"
  64. #define MQTT_CONNECT_EVENT 0
  65. #define MQTT_DISCONNECT_EVENT 1
  66. #define MQTT_MESSAGE_EVENT 2
  67. // Custom get and set postfixes
  68. // Use something like "/status" or "/set", with trailing slash
  69. #define MQTT_USE_GETTER ""
  70. #define MQTT_USE_SETTER ""
  71. // -----------------------------------------------------------------------------
  72. // DOMOTICZ
  73. // -----------------------------------------------------------------------------
  74. #ifndef ENABLE_DOMOTICZ
  75. #define ENABLE_DOMOTICZ 1
  76. #endif
  77. #define DOMOTICZ_IN_TOPIC "domoticz/in"
  78. #define DOMOTICZ_OUT_TOPIC "domoticz/out"
  79. // -----------------------------------------------------------------------------
  80. // NTP
  81. // -----------------------------------------------------------------------------
  82. #define NTP_SERVER "pool.ntp.org"
  83. #define NTP_TIME_OFFSET 1
  84. #define NTP_DAY_LIGHT true
  85. #define NTP_UPDATE_INTERVAL 1800
  86. // -----------------------------------------------------------------------------
  87. // FAUXMO
  88. // -----------------------------------------------------------------------------
  89. // This setting defines whether Alexa support should be built into the firmware
  90. #ifndef ENABLE_FAUXMO
  91. #define ENABLE_FAUXMO 1
  92. #endif
  93. // This is default value for the fauxmoEnabled setting that defines whether
  94. // this device should be discoberable and respond to Alexa commands.
  95. // Both ENABLE_FAUXMO and fauxmoEnabled should be 1 for Alexa support to work.
  96. #define FAUXMO_ENABLED 1