Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- int PinParlante = 6; //Pin de salida
- int numTones = 15; // cantidad de veces que se repite el beep
- void setup()
- {
- for (int i = 0; i < 5; i++)
- {
- tone(PinParlante,8168);
- delay(100);
- noTone(PinParlante);
- delay(1000);
- }
- for (int i = 0; i < 5; i++)
- {
- tone(PinParlante,8168);
- delay(100);
- noTone(PinParlante);
- delay(700);
- }
- for (int i = 0; i < numTones; i++)
- {
- tone(PinParlante,8168);
- delay(100);
- noTone(PinParlante);
- delay(300);
- }
- for (int i = 0; i < numTones; i++)
- {
- tone(PinParlante,8168);
- delay(100);
- noTone(PinParlante);
- delay(150);
- }
- for (int i = 0; i < numTones; i++)
- {
- tone(PinParlante,8168);
- delay(100);
- noTone(PinParlante);
- delay(100);
- }
- for (int i = 0; i < 50; i++)
- {
- tone(PinParlante,8168);
- delay(100);
- noTone(PinParlante);
- delay(50);
- }
- noTone(PinParlante);
- }
- void loop()
- {
- //no va nada, a no ser que quieras agregar algo más
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement