From 96149ab5da14b3bf5a45625f86f78467acbaefcf Mon Sep 17 00:00:00 2001 From: Mathieu Maret Date: Thu, 7 Apr 2016 01:59:20 +0200 Subject: [PATCH] Fix config inheritage --- WifiControlSensor/config.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/WifiControlSensor/config.h b/WifiControlSensor/config.h index e01c7e8..4fc7381 100644 --- a/WifiControlSensor/config.h +++ b/WifiControlSensor/config.h @@ -22,10 +22,18 @@ #endif #endif +#ifndef CONFIG_SSID_NAME #define CONFIG_SSID_NAME "ESPConfigurator" +#endif +#ifndef CONFIG_MQTT_CONTROLLED_GPIO #define CONFIG_MQTT_CONTROLLED_GPIO {2, 13} +#endif +#ifndef CONFIG_WEB_CONTROLLED_GPIO #define CONFIG_WEB_CONTROLLED_GPIO 2 +#endif +#ifndef CONFIG_EEPROM_SIZE #define CONFIG_EEPROM_SIZE 256 +#endif