/** * @file HomieTypes.h * @author your name (you@domain.com) * @brief * @version 0.1 * @date 2020-10-16 * * @copyright Copyright (c) 2020 * All Settings, configurable in Homie */ #ifndef HOMIE_PLANT_CFG_CONFIG_H #define HOMIE_PLANT_CFG_CONFIG_H #include /** * @name Sensor types * possible sensors: * @{ **/ #define FOREACH_SENSOR(SENSOR) \ SENSOR(NONE) \ SENSOR(CAPACITIVE_FREQUENCY) \ SENSOR(ANALOG_RESISTANCE_PROBE) \ SENSOR(SHT20) /** * @} */ #define GENERATE_ENUM(ENUM) ENUM, #define GENERATE_STRING(STRING) #STRING, enum SENSOR_MODE { FOREACH_SENSOR(GENERATE_ENUM) }; static const char *SENSOR_STRING[] = { FOREACH_SENSOR(GENERATE_STRING) }; //plant pump is deactivated, but sensor values are still recorded and published #define DEACTIVATED_PLANT -1 //special value to indicate a missing sensor when the plant is not deactivated but no valid sensor value was read #define MISSING_SENSOR -2 //plant uses only cooldown and duration, moisture is measured but ignored, allowedHours is ignored (eg. make a 30min on 30min off cycle) #define HYDROPONIC_MODE -3 typedef struct PlantSettings_t { HomieSetting *pSensorDry; HomieSetting *pPumpAllowedHourRangeStart; HomieSetting *pPumpAllowedHourRangeEnd; HomieSetting *pPumpOnlyWhenLowLight; HomieSetting *pPumpCooldownInSeconds; HomieSetting *pPumpDuration; HomieSetting *pPumpPowerLevel; HomieSetting *pPumpMl; } PlantSettings_t; #endif