main decision flow cleanups
This commit is contained in:
parent
9a1728bcfc
commit
2f8e26b48d
@ -50,6 +50,8 @@
|
|||||||
#define MINIMUM_LIPO_VOLT 3.6f /**< Minimum voltage of the Lipo, that must be present */
|
#define MINIMUM_LIPO_VOLT 3.6f /**< Minimum voltage of the Lipo, that must be present */
|
||||||
#define NO_LIPO_VOLT 2.0f /**< No Lipo connected */
|
#define NO_LIPO_VOLT 2.0f /**< No Lipo connected */
|
||||||
#define MINIMUM_SOLAR_VOLT 4.0f /**< Minimum voltage of the sun, to detect daylight */
|
#define MINIMUM_SOLAR_VOLT 4.0f /**< Minimum voltage of the sun, to detect daylight */
|
||||||
|
#define SOLAR_CHARGE_MIN_VOLTAGE 7
|
||||||
|
#define SOLAR_CHARGE_MAX_VOLTAGE 9
|
||||||
|
|
||||||
#define HC_SR04 /**< Ultrasonic distance sensor to measure water level */
|
#define HC_SR04 /**< Ultrasonic distance sensor to measure water level */
|
||||||
#define SENSOR_SR04_ECHO 17 /**< GPIO 17 - Echo */
|
#define SENSOR_SR04_ECHO 17 /**< GPIO 17 - Echo */
|
||||||
|
@ -24,10 +24,9 @@ private:
|
|||||||
|
|
||||||
int mAnalogValue=0; /**< moist sensor values, used for a calculation */
|
int mAnalogValue=0; /**< moist sensor values, used for a calculation */
|
||||||
HomieNode* mPlant = NULL;
|
HomieNode* mPlant = NULL;
|
||||||
PlantSettings_t* mSetting;
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
PlantSettings_t* mSetting;
|
||||||
/**
|
/**
|
||||||
* @brief Construct a new Plant object
|
* @brief Construct a new Plant object
|
||||||
*
|
*
|
||||||
|
@ -13,6 +13,7 @@
|
|||||||
#include "HomieConfiguration.h"
|
#include "HomieConfiguration.h"
|
||||||
#include "DS18B20.h"
|
#include "DS18B20.h"
|
||||||
#include <Homie.h>
|
#include <Homie.h>
|
||||||
|
#include "time.h"
|
||||||
#include "esp_sleep.h"
|
#include "esp_sleep.h"
|
||||||
#include "RunningMedian.h"
|
#include "RunningMedian.h"
|
||||||
|
|
||||||
@ -27,13 +28,23 @@ const unsigned long TEMPREADCYCLE = 30000; /**< Check temperature all half minut
|
|||||||
/********************* non volatile enable after deepsleep *******************************/
|
/********************* non volatile enable after deepsleep *******************************/
|
||||||
|
|
||||||
RTC_DATA_ATTR long rtcDeepSleepTime = 0; /**< Time, when the microcontroller shall be up again */
|
RTC_DATA_ATTR long rtcDeepSleepTime = 0; /**< Time, when the microcontroller shall be up again */
|
||||||
|
RTC_DATA_ATTR long rtcLastActive0 = 0;
|
||||||
RTC_DATA_ATTR long rtcMoistureTrigger0 = 0; /**<Level for the moisture sensor */
|
RTC_DATA_ATTR long rtcMoistureTrigger0 = 0; /**<Level for the moisture sensor */
|
||||||
|
RTC_DATA_ATTR long rtcLastActive1 = 0;
|
||||||
RTC_DATA_ATTR long rtcMoistureTrigger1 = 0; /**<Level for the moisture sensor */
|
RTC_DATA_ATTR long rtcMoistureTrigger1 = 0; /**<Level for the moisture sensor */
|
||||||
|
RTC_DATA_ATTR long rtcLastActive2 = 0;
|
||||||
RTC_DATA_ATTR long rtcMoistureTrigger2 = 0; /**<Level for the moisture sensor */
|
RTC_DATA_ATTR long rtcMoistureTrigger2 = 0; /**<Level for the moisture sensor */
|
||||||
|
RTC_DATA_ATTR long rtcLastActive3 = 0;
|
||||||
RTC_DATA_ATTR long rtcMoistureTrigger3 = 0; /**<Level for the moisture sensor */
|
RTC_DATA_ATTR long rtcMoistureTrigger3 = 0; /**<Level for the moisture sensor */
|
||||||
|
RTC_DATA_ATTR long rtcLastActive4 = 0;
|
||||||
RTC_DATA_ATTR long rtcMoistureTrigger4 = 0; /**<Level for the moisture sensor */
|
RTC_DATA_ATTR long rtcMoistureTrigger4 = 0; /**<Level for the moisture sensor */
|
||||||
|
RTC_DATA_ATTR long rtcLastActive5 = 0;
|
||||||
RTC_DATA_ATTR long rtcMoistureTrigger5 = 0; /**<Level for the moisture sensor */
|
RTC_DATA_ATTR long rtcMoistureTrigger5 = 0; /**<Level for the moisture sensor */
|
||||||
|
RTC_DATA_ATTR long rtcLastActive6 = 0;
|
||||||
RTC_DATA_ATTR long rtcMoistureTrigger6 = 0; /**<Level for the moisture sensor */
|
RTC_DATA_ATTR long rtcMoistureTrigger6 = 0; /**<Level for the moisture sensor */
|
||||||
|
RTC_DATA_ATTR int lastPumpRunning = 0;
|
||||||
|
RTC_DATA_ATTR long lastWaterValue = 0;
|
||||||
|
|
||||||
|
|
||||||
bool warmBoot = true;
|
bool warmBoot = true;
|
||||||
bool mode2Active = false;
|
bool mode2Active = false;
|
||||||
@ -84,6 +95,79 @@ void readSystemSensors() {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void setMoistureTrigger(int plantId, long value){
|
||||||
|
if(plantId == 0){
|
||||||
|
rtcMoistureTrigger0 = value;
|
||||||
|
}
|
||||||
|
if(plantId == 1){
|
||||||
|
rtcMoistureTrigger1 = value;
|
||||||
|
}
|
||||||
|
if(plantId == 2){
|
||||||
|
rtcMoistureTrigger2 = value;
|
||||||
|
}
|
||||||
|
if(plantId == 3){
|
||||||
|
rtcMoistureTrigger3 = value;
|
||||||
|
}
|
||||||
|
if(plantId == 4){
|
||||||
|
rtcMoistureTrigger4 = value;
|
||||||
|
}
|
||||||
|
if(plantId == 5){
|
||||||
|
rtcMoistureTrigger5 = value;
|
||||||
|
}
|
||||||
|
if(plantId == 6){
|
||||||
|
rtcMoistureTrigger6 = value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void setLastActivationForPump(int plantId, long value){
|
||||||
|
if(plantId == 0){
|
||||||
|
rtcLastActive0 = value;
|
||||||
|
}
|
||||||
|
if(plantId == 1){
|
||||||
|
rtcLastActive1 = value;
|
||||||
|
}
|
||||||
|
if(plantId == 2){
|
||||||
|
rtcLastActive2 = value;
|
||||||
|
}
|
||||||
|
if(plantId == 3){
|
||||||
|
rtcLastActive3 = value;
|
||||||
|
}
|
||||||
|
if(plantId == 4){
|
||||||
|
rtcLastActive4 = value;
|
||||||
|
}
|
||||||
|
if(plantId == 5){
|
||||||
|
rtcLastActive5 = value;
|
||||||
|
}
|
||||||
|
if(plantId == 6){
|
||||||
|
rtcLastActive6 = value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void getLastActivationForPump(int plantId){
|
||||||
|
if(plantId == 0){
|
||||||
|
return rtcLastActive0
|
||||||
|
}
|
||||||
|
if(plantId == 1){
|
||||||
|
return rtcLastActive1
|
||||||
|
}
|
||||||
|
if(plantId == 2){
|
||||||
|
return rtcLastActive2
|
||||||
|
}
|
||||||
|
if(plantId == 3){
|
||||||
|
return rtcLastActive4
|
||||||
|
}
|
||||||
|
if(plantId == 4){
|
||||||
|
return rtcLastActive4
|
||||||
|
}
|
||||||
|
if(plantId == 5){
|
||||||
|
return rtcLastActive5
|
||||||
|
}
|
||||||
|
if(plantId == 6){
|
||||||
|
return rtcLastActive6
|
||||||
|
}
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Sensors, that are connected to GPIOs, mandatory for WIFI.
|
* @brief Sensors, that are connected to GPIOs, mandatory for WIFI.
|
||||||
* These sensors (ADC2) can only be read when no Wifi is used.
|
* These sensors (ADC2) can only be read when no Wifi is used.
|
||||||
@ -139,20 +223,21 @@ void readSensors() {
|
|||||||
digitalWrite(OUTPUT_SENSOR, LOW);
|
digitalWrite(OUTPUT_SENSOR, LOW);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//wait till homie flushed mqtt ect.
|
||||||
|
void prepareSleep() {
|
||||||
|
Homie.prepareToSleep();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
//FIXME real impl
|
||||||
* @brief cyclic Homie callback
|
long getCurrentTime(){
|
||||||
* All logic, to be done by the controller cyclically
|
return 1337;
|
||||||
*/
|
}
|
||||||
void loopHandler() {
|
|
||||||
|
|
||||||
/* Move from Setup to this position, because the Settings are only here available */
|
//Homie.getMqttClient().disconnect();
|
||||||
if (!mLoopInited) {
|
|
||||||
// Configure Deep Sleep:
|
void onHomieEvent(const HomieEvent& event) {
|
||||||
if (deepSleepTime.get()) {
|
switch(event.type) {
|
||||||
Serial << "HOMIE | Setup sleeping for " << deepSleepTime.get() << " ms" << endl;
|
case HomieEventType::MQTT_READY:
|
||||||
}
|
|
||||||
/* Publish default values */
|
|
||||||
plant0.setProperty("switch").send(String("OFF"));
|
plant0.setProperty("switch").send(String("OFF"));
|
||||||
plant1.setProperty("switch").send(String("OFF"));
|
plant1.setProperty("switch").send(String("OFF"));
|
||||||
plant2.setProperty("switch").send(String("OFF"));
|
plant2.setProperty("switch").send(String("OFF"));
|
||||||
@ -161,55 +246,78 @@ void loopHandler() {
|
|||||||
plant5.setProperty("switch").send(String("OFF"));
|
plant5.setProperty("switch").send(String("OFF"));
|
||||||
plant6.setProperty("switch").send(String("OFF"));
|
plant6.setProperty("switch").send(String("OFF"));
|
||||||
|
|
||||||
|
//wait for rtc sync?
|
||||||
|
rtcDeepSleepTime = deepSleepTime.get();
|
||||||
|
if(mode2Active){
|
||||||
|
mode2MQTT();
|
||||||
|
}
|
||||||
|
Homie.getLogger() << "MQTT connected, preparing for deep sleep after 100ms..." << endl;
|
||||||
|
break;
|
||||||
|
case HomieEventType::READY_TO_SLEEP:
|
||||||
|
Homie.getLogger() << "Ready to sleep" << endl;
|
||||||
|
esp_deep_sleep_start();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
int determineNextPump(){
|
||||||
|
float solarValue = solarRawSensor.getMedian()
|
||||||
|
bool isLowLight =(ADC_5V_TO_3V3(solarValue) > SOLAR_CHARGE_MIN_VOLTAGE || ADC_5V_TO_3V3(solarValue) < SOLAR_CHARGE_MAX_VOLTAGE);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
//FIXME instead of for, use sorted by last activation index to ensure equal runtime?
|
||||||
for(int i=0; i < MAX_PLANTS; i++) {
|
for(int i=0; i < MAX_PLANTS; i++) {
|
||||||
mPlants[i].calculateSensorValue(AMOUNT_SENOR_QUERYS);
|
mPlants[i].calculateSensorValue(AMOUNT_SENOR_QUERYS);
|
||||||
mPlants[i].setProperty("moist").send(String(100 * mPlants[i].getSensorValue() / 4095 ));
|
mPlants[i].setProperty("moist").send(String(100 * mPlants[i].getSensorValue() / 4095 ));
|
||||||
/* the last Plant, that was watered is stored in non volatile memory */
|
long lastActivation = getLastActivationForPump(i);
|
||||||
if (gCurrentPlant <= 0 && mPlants[i].isPumpRequired()) {
|
long sinceLastActivation = getCurrentTime()-lastActivation;
|
||||||
/* there was no plant activated -> we can store the first one */
|
//this pump is in cooldown skip it and disable low power mode trigger for it
|
||||||
gCurrentPlant = i + 1;
|
if(mPlants[i].mSetting->pPumpCooldownInHours > sinceLastActivation * ){
|
||||||
} else if (gCurrentPlant > 0 && gCurrentPlant < (i+1) &&
|
setMoistureTrigger(i, DEACTIVATED_PLANT)
|
||||||
mPlants[(gCurrentPlant - 1)].isPumpRequired() == false) {
|
continue;
|
||||||
/* The last does not need any more some water -> jump to the next one */
|
|
||||||
gCurrentPlant = i + 1;
|
|
||||||
}
|
}
|
||||||
|
//skip as it is not low light
|
||||||
|
if(!isLowLight && mPlants[i].mSetting->pPumpOnlyWhenLowLight.get()){
|
||||||
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(mPlants->isPumpRequired()){
|
||||||
|
return i;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
void mode2MQTT(){
|
||||||
|
if (deepSleepTime.get()) {
|
||||||
|
Serial << "HOMIE | Setup sleeping for " << deepSleepTime.get() << " ms" << endl;
|
||||||
|
}
|
||||||
|
/* Publish default values */
|
||||||
|
|
||||||
|
if(lastPumpRunning != -1){
|
||||||
|
long waterDiff = mWaterGone-lastWaterValue
|
||||||
|
//TODO attribute used water in ml to plantid
|
||||||
|
}
|
||||||
sensorWater.setProperty("remaining").send(String(waterLevelMax.get() - mWaterGone ));
|
sensorWater.setProperty("remaining").send(String(waterLevelMax.get() - mWaterGone ));
|
||||||
Serial << "Water : " << mWaterGone << " cm (" << String(waterLevelMax.get() - mWaterGone ) << "%)" << endl;
|
Serial << "Water : " << mWaterGone << " cm (" << String(waterLevelMax.get() - mWaterGone ) << "%)" << endl;
|
||||||
|
lastWaterValue = mWaterGone
|
||||||
|
|
||||||
/* Check if a plant needs water */
|
if (mWaterGone <= waterLevelMin.get()) {
|
||||||
if (gCurrentPlant > 0) {
|
/* let the ESP sleep qickly, as nothing must be done */
|
||||||
int plntIdx = (gCurrentPlant-1);
|
if ((millis() >= (MIN_TIME_RUNNING * MS_TO_S)) && (deepSleepTime.get() > 0)) {
|
||||||
if (mPlants[plntIdx].isPumpRequired() &&
|
Serial << "No Water for pumps" << endl;
|
||||||
(mWaterGone > waterLevelMin.get()) &&
|
t.after(50, prepareSleep);
|
||||||
(digitalRead(mPlants[plntIdx].getPumpPin()) == LOW) ) {
|
return;
|
||||||
Serial << "Plant" << plntIdx << " needs water" << endl;
|
|
||||||
mPlants[plntIdx].setProperty("switch").send(String("ON"));
|
|
||||||
}
|
}
|
||||||
digitalWrite(OUTPUT_PUMP, HIGH);
|
|
||||||
digitalWrite(mPlants[plntIdx].getPumpPin(), HIGH);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
rtcDeepSleepTime = deepSleepTime.get();
|
|
||||||
rtcMoistureTrigger0 = mPlants[0].getSettingSensorDry();
|
|
||||||
rtcMoistureTrigger1 = mPlants[1].getSettingSensorDry();
|
|
||||||
rtcMoistureTrigger2 = mPlants[2].getSettingSensorDry();
|
|
||||||
rtcMoistureTrigger3 = mPlants[3].getSettingSensorDry();
|
|
||||||
rtcMoistureTrigger4 = mPlants[4].getSettingSensorDry();
|
|
||||||
rtcMoistureTrigger5 = mPlants[5].getSettingSensorDry();
|
|
||||||
rtcMoistureTrigger6 = mPlants[6].getSettingSensorDry();
|
|
||||||
}
|
|
||||||
mLoopInited = true;
|
|
||||||
|
|
||||||
readSensors();
|
|
||||||
|
|
||||||
if ((millis() % 1500) == 0) {
|
|
||||||
sensorLipo.setProperty("percent").send( String(100 * lipoSenor / 4095) );
|
sensorLipo.setProperty("percent").send( String(100 * lipoSenor / 4095) );
|
||||||
sensorLipo.setProperty("volt").send( String(ADC_5V_TO_3V3(lipoSenor)) );
|
sensorLipo.setProperty("volt").send( String(ADC_5V_TO_3V3(lipoSenor)) );
|
||||||
sensorSolar.setProperty("percent").send(String((100 * solarSensor ) / 4095));
|
sensorSolar.setProperty("percent").send(String((100 * solarSensor ) / 4095));
|
||||||
sensorSolar.setProperty("volt").send( String(SOLAR_VOLT(solarSensor)) );
|
sensorSolar.setProperty("volt").send( String(SOLAR_VOLT(solarSensor)) );
|
||||||
} else if ((millis() % 1000) == 0) {
|
|
||||||
float temp[2] = { TEMP_INIT_VALUE, TEMP_INIT_VALUE };
|
float temp[2] = { TEMP_INIT_VALUE, TEMP_INIT_VALUE };
|
||||||
float* pFloat = temp;
|
float* pFloat = temp;
|
||||||
int devices = dallas.readAllTemperatures(pFloat, 2);
|
int devices = dallas.readAllTemperatures(pFloat, 2);
|
||||||
@ -225,29 +333,26 @@ void loopHandler() {
|
|||||||
sensorTemp.setProperty("control").send( String(pFloat[1]));
|
sensorTemp.setProperty("control").send( String(pFloat[1]));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool lipoTempWarning = math.abs(temp[1] - temp[2]) > 5;
|
||||||
|
if(lipoTempWarning){
|
||||||
|
t.after(50, prepareSleep);
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Main Loop functionality */
|
digitalWrite(OUTPUT_PUMP, LOW);
|
||||||
if (mWaterGone <= waterLevelMin.get()) {
|
for(int i=0; i < MAX_PLANTS; i++) {
|
||||||
/* let the ESP sleep qickly, as nothing must be done */
|
digitalWrite(mPlants[pumpOrNegative].mPinPump, LOW);
|
||||||
if ((millis() >= (MIN_TIME_RUNNING * MS_TO_S)) && (deepSleepTime.get() > 0)) {
|
|
||||||
mDeepSleep = true;
|
|
||||||
Serial << "No Water for pumps" << endl;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Always check, that after 5 minutes the device is sleeping */
|
lastPumpRunning = determineNextPump()
|
||||||
/* Pump is running, go to sleep after defined time */
|
if(pumpOrNegative != -1){
|
||||||
if (millis() >= ((MIN_TIME_RUNNING + 5) &&
|
setLastActivationForPump(pumpOrNegative, getCurrentTime())
|
||||||
(deepSleepTime.get() > 0))) {
|
digitalWrite(mPlants[pumpOrNegative].mPinPump, HIGH);
|
||||||
mDeepSleep = true;
|
|
||||||
} else if ((millis() >= ((MIN_TIME_RUNNING * MS_TO_S) + 0)) &&
|
|
||||||
(deepSleepTime.get() > 0)) {
|
|
||||||
Serial << "Maximum time reached: " << endl;
|
|
||||||
mDeepSleep = true;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
bool switchGeneralPumpHandler(const int pump, const HomieRange& range, const String& value) {
|
bool switchGeneralPumpHandler(const int pump, const HomieRange& range, const String& value) {
|
||||||
if (range.isRange) return false; // only one switch is present
|
if (range.isRange) return false; // only one switch is present
|
||||||
switch (pump)
|
switch (pump)
|
||||||
@ -436,6 +541,7 @@ void systemInit(){
|
|||||||
bool mode1(){
|
bool mode1(){
|
||||||
Serial.println("Init mode 1");
|
Serial.println("Init mode 1");
|
||||||
readSensors();
|
readSensors();
|
||||||
|
//queue sensor values for
|
||||||
|
|
||||||
if ((rtcDeepSleepTime == 0) ||
|
if ((rtcDeepSleepTime == 0) ||
|
||||||
(rtcMoistureTrigger0 == 0) ||
|
(rtcMoistureTrigger0 == 0) ||
|
||||||
@ -479,7 +585,7 @@ bool mode1(){
|
|||||||
Serial.println("Moisture of plant 6");
|
Serial.println("Moisture of plant 6");
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
//TODO read sensor values for each plant
|
//check how long it was already in mode1 if to long goto mode2
|
||||||
|
|
||||||
//TODO evaluate if something is to do
|
//TODO evaluate if something is to do
|
||||||
return false;
|
return false;
|
||||||
|
Loading…
Reference in New Issue
Block a user