Hello,
i have a problem. i have written a program but the relais starts everytime with the sound, but the sound shouls start alone.
const int relais = 3;
const int summer = 10;
long int dauer;
void setup() {
pinMode(relais, OUTPUT);
pinMode(summer, OUTPUT);
}
void loop() {
digitalWrite(summer, HIGH);
delay(1000);
digitalWrite(summer,LOW);
delay(10000);
}
summer ist the sound