...
int
buzzPin = 10;
//Podłącz Buzzer do Digital Pin10
void
setup()
{
pinMode(buzzPin, OUTPUT);
}
void
loop()
{
digitalWrite(buzzPin, HIGH);
delay(1);
digitalWrite(buzzPin, LOW);
delay(1000);
}
buzer se światłomierzem
Brak komentarzy:
Prześlij komentarz