Звук по нажатию кнопки

Det
Offline
Зарегистрирован: 08.04.2013

Здравствуйте, не подскажите как самым простым способом заставить пищать пьэзоелемент ритмично (издавать мелодию в интервале 1-2 сек.) по нажатию на кнопку, а по повторном нажатии мелодия перестает играть? Спасибо

Araris
Offline
Зарегистрирован: 09.11.2012

То есть Вы желаете получить схему подключения кнопки и пъезоэлемента к Ардуино плюс готовый скетч ?

missa
Offline
Зарегистрирован: 06.11.2013

да, и мне пожалуйста, если можно))) а-т я совсем дубина

maxi_10
Offline
Зарегистрирован: 05.01.2012
/*
  Melody
 
 Plays a melody 
 
 circuit:
 * 8-ohm speaker on digital pin 8
 
 created 21 Jan 2010
 modified 30 Aug 2011
 by Tom Igoe 

This example code is in the public domain.
 
 http://arduino.cc/en/Tutorial/Tone
 
 */
 #include "pitches.h"

// notes in the melody:
int melody[] = {
  NOTE_C4, NOTE_G3,NOTE_G3, NOTE_A3, NOTE_G3,0, NOTE_B3, NOTE_C4};

// note durations: 4 = quarter note, 8 = eighth note, etc.:
int noteDurations[] = {
  4, 8, 8, 4,4,4,4,4 };

void setup() {
  // iterate over the notes of the melody:
  for (int thisNote = 0; thisNote < 8; thisNote++) {

    // to calculate the note duration, take one second 
    // divided by the note type.
    //e.g. quarter note = 1000 / 4, eighth note = 1000/8, etc.
    int noteDuration = 1000/noteDurations[thisNote];
    tone(8, melody[thisNote],noteDuration);

    // to distinguish the notes, set a minimum time between them.
    // the note's duration + 30% seems to work well:
    int pauseBetweenNotes = noteDuration * 1.30;
    delay(pauseBetweenNotes);
    // stop the tone playing:
    noTone(8);
  }
}

void loop() {
  // no need to repeat the melody.
}

 

maxi_10
Offline
Зарегистрирован: 05.01.2012

Это стандартный пример из arduino IDE (Файл => Примеры => 02 Digital => toteMelody)

Я думаю как перенести код из Setup в блок if действие кнопки объяснять не надо.

missa
Offline
Зарегистрирован: 06.11.2013

агась, эт я видела, думаю как его вбахать в типа часы-будильник) часы ещё тож не написаны((

maxi_10
Offline
Зарегистрирован: 05.01.2012

Вот тут можно почитать про часы без модуля часов

http://arduino.ru/forum/proekty/elektronnye-chasy-termometr-bez-ispolzovaniya-modulyamikroskhemy-tochnogo-vremeni

а вообще нет нечего сложного 

создаеш функцию

function Alarm(){
  for (int thisNote = 0; thisNote < 8; thisNote++) {
    int noteDuration = 1000/noteDurations[thisNote];
    tone(8, melody[thisNote],noteDuration);
    int pauseBetweenNotes = noteDuration * 1.30;
    delay(pauseBetweenNotes);
    noTone(8);
  }
}
 
и вызываешь ее по нажатию кнопки или по событию часов.
Det
Offline
Зарегистрирован: 08.04.2013

да. я не разбираюсь в ардуино но мен нужно сделать сам скетч. с подключением я разобрался. скетчей много перепробовал но именно что бы по нажатию на кнопку такого не видел... если не трудно выложите скетч

Member
Offline
Зарегистрирован: 06.11.2013

maxi_10 пишет:

/*
  Melody
 
 Plays a melody 
 
 circuit:
 * 8-ohm speaker on digital pin 8
 
 created 21 Jan 2010
 modified 30 Aug 2011
 by Tom Igoe 

This example code is in the public domain.
 
 http://arduino.cc/en/Tutorial/Tone
 
 */
 #include "pitches.h"

// notes in the melody:
int melody[] = {
  NOTE_C4, NOTE_G3,NOTE_G3, NOTE_A3, NOTE_G3,0, NOTE_B3, NOTE_C4};

// note durations: 4 = quarter note, 8 = eighth note, etc.:
int noteDurations[] = {
  4, 8, 8, 4,4,4,4,4 };

NOTE_C4 не обявлена ....., откуда взять файл pitches.h и в какой каталог положить?

maxi_10
Offline
Зарегистрирован: 05.01.2012

Member пишет:

maxi_10 пишет:

/*
  Melody
 
 Plays a melody 
 
 circuit:
 * 8-ohm speaker on digital pin 8
 
 created 21 Jan 2010
 modified 30 Aug 2011
 by Tom Igoe 

This example code is in the public domain.
 
 http://arduino.cc/en/Tutorial/Tone
 
 */
 #include "pitches.h"

// notes in the melody:
int melody[] = {
  NOTE_C4, NOTE_G3,NOTE_G3, NOTE_A3, NOTE_G3,0, NOTE_B3, NOTE_C4};

// note durations: 4 = quarter note, 8 = eighth note, etc.:
int noteDurations[] = {
  4, 8, 8, 4,4,4,4,4 };

NOTE_C4 не обявлена ....., откуда взять файл pitches.h и в какой каталог положить?

 

Файл => Примеры => 02 Digital => toteMelody

Det
Offline
Зарегистрирован: 08.04.2013

А нет самого простого примера простого нажатию на кнопку?

maxi_10
Offline
Зарегистрирован: 05.01.2012

Det пишет:

А нет самого простого примера простого нажатию на кнопку?

 

http://alxarduino.blogspot.ru/2013/09/ReadAnalogKeys.html