// which pin the buzzer is connected to int buzzer = 11; // code in here runs only once void setup() { // set the buzzer as an output pinMode(11, OUTPUT); } // the loop runs over and over again forever void loop() { //put your code here }