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.

73 lines
2.1 KiB

6 years ago
  1. #pragma once
  2. //------------------------------------------------------------------------------
  3. // Do not change this file unless you know what you are doing
  4. // Configuration settings are in the general.h file
  5. //------------------------------------------------------------------------------
  6. #if DEBUG_TELNET_SUPPORT
  7. #undef TELNET_SUPPORT
  8. #define TELNET_SUPPORT 1
  9. #endif
  10. #if not WEB_SUPPORT
  11. #undef DEBUG_WEB_SUPPORT
  12. #define DEBUG_WEB_SUPPORT 0
  13. #endif
  14. #if not WEB_SUPPORT
  15. #undef API_SUPPORT
  16. #define API_SUPPORT 0 // API support requires web support
  17. #endif
  18. #if not WEB_SUPPORT
  19. #undef SSDP_SUPPORT
  20. #define SSDP_SUPPORT 0 // SSDP support requires web support
  21. #endif
  22. #if UART_MQTT_SUPPORT
  23. #define MQTT_SUPPORT 1
  24. #undef TERMINAL_SUPPORT
  25. #define TERMINAL_SUPPORT 0
  26. #undef DEBUG_SERIAL_SUPPORT
  27. #define DEBUG_SERIAL_SUPPORT 0
  28. #endif
  29. #if ALEXA_SUPPORT
  30. #undef BROKER_SUPPORT
  31. #define BROKER_SUPPORT 1 // If Alexa enabled enable BROKER
  32. #endif
  33. #if INFLUXDB_SUPPORT
  34. #undef BROKER_SUPPORT
  35. #define BROKER_SUPPORT 1 // If InfluxDB enabled enable BROKER
  36. #endif
  37. #if DOMOTICZ_SUPPORT
  38. #undef MQTT_SUPPORT
  39. #define MQTT_SUPPORT 1 // If Domoticz enabled enable MQTT
  40. #undef BROKER_SUPPORT
  41. #define BROKER_SUPPORT 1 // If Domoticz enabled enable BROKER
  42. #endif
  43. #if HOMEASSISTANT_SUPPORT
  44. #undef MQTT_SUPPORT
  45. #define MQTT_SUPPORT 1 // If Home Assistant enabled enable MQTT
  46. #endif
  47. #ifndef ASYNC_TCP_SSL_ENABLED
  48. #if THINGSPEAK_USE_SSL && THINGSPEAK_USE_ASYNC
  49. #undef THINGSPEAK_SUPPORT
  50. #define THINGSPEAK_SUPPORT 0 // Thingspeak in ASYNC mode requires ASYNC_TCP_SSL_ENABLED
  51. #endif
  52. #endif
  53. #if THINKSPEAK_SUPPORT
  54. #undef BROKER_SUPPORT
  55. #define BROKER_SUPPORT 1 // If Thingspeak enabled enable BROKER
  56. #endif
  57. #if SCHEDULER_SUPPORT
  58. #undef NTP_SUPPORT
  59. #define NTP_SUPPORT 1 // Scheduler needs NTP
  60. #endif