config.h 301 B

123456789101112131415161718
  1. #ifndef __CONFIG_H__
  2. #define __CONFIG_H__
  3. #include "driver/gpio.h"
  4. #define SW_VERSION "1.0"
  5. #define PULSES_PER_KWH 1000
  6. // These defines configures which code to generate (to save download time during development)
  7. //#define WIFI_ENABLED
  8. //#define MQTT_ENABLED
  9. //#define ENABLE_SEND
  10. #endif