Domotique/WifiControlSensor/config.h

38 lines
820 B
C
Raw Normal View History

#pragma once
#include "config_device.h"
/* DO NOT CHANGE THIS FILE */
/* Contains values that SHOULD be defined to have the sketch working */
2016-03-30 00:49:57 +02:00
/* Modify value in config_device.h instead */
#ifndef CONFIG_WEB_DELAY_MS
#define CONFIG_WEB_DELAY_MS 100
#endif
#ifndef CONFIG_SAMPLING_PERIODE_MS
#define CONFIG_SAMPLING_PERIODE_MS 60000
#endif
#ifndef CONFIG_BMP180_SDA
#define CONFIG_BMP180_SDA 12
#endif
#ifndef CONFIG_BMP180_SLC
#define CONFIG_BMP180_SLC 14
#endif
#ifndef CONFIG_DHT_PIN
#define CONFIG_DHT_PIN 2
#endif
2016-04-07 01:59:20 +02:00
#ifndef CONFIG_SSID_NAME
#define CONFIG_SSID_NAME "ESPConfigurator"
2016-04-07 01:59:20 +02:00
#endif
2016-04-07 01:59:20 +02:00
#ifndef CONFIG_MQTT_CONTROLLED_GPIO
#define CONFIG_MQTT_CONTROLLED_GPIO {2, 13}
2016-04-07 01:59:20 +02:00
#endif
2016-04-07 01:59:20 +02:00
#ifndef CONFIG_EEPROM_SIZE
2016-03-30 00:49:57 +02:00
#define CONFIG_EEPROM_SIZE 256
2016-04-07 01:59:20 +02:00
#endif