Danny van den Brande
Published © CC BY-SA

Arduino - Button Example With the KY-004 -DOORBELL

Hello world! Today I made a example for the KY-004 Button module. Let's say it's a very annoying doorbell. But it works.

BeginnerProtip1 hour1,265
Arduino - Button Example With the KY-004 -DOORBELL

Things used in this project

Story

Read more

Schematics

Schematic

Code

KY-004_Button_Module_Example.ino

Arduino
This time i made a very simple example on how to use a button.
//Hello world! This time i made a very simple example on how to use a button.
//the KY-004 button module is very easy to use and requires just a small code.

int Buzzer = 3 ;
int Button = 10; 
boolean val ;

// here i set up the tones, you can change them @ void loop.
int tones[] = {261, 277, 293, 311, 329, 349, 369, 392, 415, 440, 466, 493, 523 ,554};
//              1    2    3    4    5    6    7    8    9    10   11   12   13   14
// You can add more tones but i added 14. Just fill in what tone you would like to use, @ void loop you see " tone(Buzzer, tones[12]); " below,  digitalWrite(Buzzer, HIGH);
// here you can change the tones by filling in a number between 1 and 14

void setup ()
{
  pinMode (Buzzer, OUTPUT); 
  pinMode (Button, INPUT);
    //Part of buzzer tones
  for (int i = 0; i < Buzzer; i++)  ;   
}
void loop ()
{
  val = digitalRead (Button); 
    if (val == 0)  
  {
    digitalWrite (Buzzer, HIGH);
    tone(Buzzer, tones[14]);
  }
  else
  {
    digitalWrite (Buzzer, LOW);
    noTone(Buzzer);
  }
}

Credits

Danny van den Brande

Danny van den Brande

36 projects • 108 followers
"Hello world."

Comments