123456789101112131415161718192021222324 |
- #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 MQTT_ENABLED
- //#define ENABLE_DS18B20
- #define MQTT_DEBUG // Add an extra debug string to the topic-string
- #define RX_TIMER
- #define IR_RECEIVER
- #define ONE_WIRE_BUS_IO GPIO_NUM_16 // Temp sensors
- #define GPIO_IR_RX_DATA GPIO_NUM_25 // IR Receiver
- #define GPIO_IR_TX_DATA GPIO_NUM_26 // IR Transmitter
- #endif
|