I have a ondelay on my output but I wont it to start with out delay on another input but how can I get it to do that?
Br Kasper
if(tempc > 200 and not digitalRead(niveau)and state == HIGH)
delay(5000);
{
digitalWrite(ventil,1);
}
if(tempc < 200 or digitalRead(niveau)or state == LOW)
{
digitalWrite(ventil,0);
}