Void Loop (Digitalwrite (Relay, High) Delay (Interval) Digitalwrite (Relay, Low) Delay (Interval) )

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

void loop()

{
digitalWrite(relay, HIGH);
delay(interval);
digitalWrite(relay, LOW);
delay(interval);
}

You might also like