1234567891011121314151617181920212223 |
- #ifndef __CONFIG_H__
- #define __CONFIG_H__
- #include "driver/gpio.h"
- #define SW_VERSION "1.0"
- #define ACTIVE_THRESHOLD_MS 60000 // 60 seconds in milliseconds
- #define PHOTO_SENSOR_PIN GPIO_NUM_18
- #define BLINK_GPIO CONFIG_BLINK_GPIO
- #define SOUND_ENABLED
- #define DOOR_SENSOR_ENABLED
- #define WIFI_ENABLED
- #define MQTT_ENABLED
- #endif
|