Surilli
Published © LGPL

Beep a Buzzer to get an alert from your Surilli GSM

You often need beep notifications or alert against any specific action that your Surilli hardware has performed. The Piezo buzzer steps in!

BeginnerFull instructions provided15 minutes685
Beep a Buzzer to get an alert from your Surilli GSM

Things used in this project

Hardware components

Buzzer
Buzzer
×1
Jumper wires (generic)
Jumper wires (generic)
×1
Breadboard (generic)
Breadboard (generic)
×1
Surilli GSM
Surilli GSM
×1

Software apps and online services

Arduino IDE
Arduino IDE

Story

Read more

Code

Buzzer Tutorail Sketch

C/C++
void setup() {
//Initializing pin 12 as Output Pin. This is the signaling pin for buzzer
  pinMode(12, OUTPUT);
}

// the loop function runs over and over again forever
void loop() {
  digitalWrite(12, HIGH);   // turn the buzzer beep on (HIGH is the voltage level)
  delay(1000);                       // wait for a second
  digitalWrite(12, LOW);    // turn the buzzer beep off by making the voltage LOW
  delay(1000);                       // wait for a second
}

Credits

Surilli
196 projects • 65 followers
Surilli is a premiere Internet of Things centric Technology Company aimed at providing cutting edge innovative solutions.

Comments