void Pumpe(){
if(percentage < SystemLimens.setSoil_Limen)
{
digitalWrite(RelayPin,RelayOn);//on
}
if(totalMilliLitres>=SystemLimens.setVolume_Limen)
{
digitalWrite(RelayPin,RelayOff);//off
}
if(millis()-StartTime>=fivesMinutes)// temps d'absorption de l'eau par les racines
{
reset_Counter();
}
}
ello I would like to add a second cycle of watering,
force On, stop the pump by totalMimimeters and reset counter.
someone would have an idea please.