Instructions

www.joy-it.net
Pascalstr. 8 47506 Neukirchen-Vluyn
The project is completed aer the transfer of the program. If the buzzer is
supplied with power aer the transfer, it will be making noises.
int buzzer=8;
// Initialize digital I/O pin, which controls the buzzer
void setup() {
pinMode(buzzer,OUTPUT); // set pin as "output"
}
void loop() {
digitalWrite(buzzer, HIGH); // makes noises
}