1
0

config.h 385 B

12345678910111213141516171819
  1. #ifndef __CONFIG_H__
  2. #define __CONFIG_H__
  3. #include "driver/gpio.h"
  4. #define SW_VERSION "1.0"
  5. // These defines configures which code to generate (to save download time during development)
  6. //#define WIFI_ENABLED
  7. //#define MQTT_ENABLED
  8. //#define ENABLE_SEND
  9. #define ENABLE_RELAY_OUTPUT
  10. #define VVB_RELAY_OUTPUT_IO GPIO_NUM_22 // Output GPIO of a relay control of VVB
  11. #endif