const int relayPin = 9;
void setup() {
// put your setup code here, to run once:
pinMode(relayPin, OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
digitalWrite(relayPin, HIGH);
delay(3200);
digitalWrite(relayPin, LOW);
delay(3200);
}