1234567891011121314151617181920212223 |
- #ifndef __CONFIG_H__
- #define __CONFIG_H__
- #include "driver/gpio.h"
- #define SW_VERSION "1.0"
- // These defines configures which code to generate (to save download time during development)
- #define WIFI_ENABLED
- #define HTTP_ENABLED
- //#define MQTT_ENABLED
- //#define ENABLE_SEND
- #define ENABLE_RELAY_OUTPUT
- #define ENABLE_KWH_COUNTER
- #define VVB_RELAY_OUTPUT_IO GPIO_NUM_22 // Output GPIO of a relay control of VVB
- #define KWH_COUNTER_INPUT_IO GPIO_NUM_16 // Input
- #endif
|