toneMelody

はじめに

メロディを演奏します。

デジタルの8番ピンにスピーカが接続されている想定です。

プログラム

定義等

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*
  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.

  https://www.arduino.cc/en/Tutorial/BuiltInExamples/toneMelody
*/

#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
};
 

pitches.hというファイルを#includeを使って取り込みます。これにより、pitches.hでの定義や宣言を利用できるようになります。pitches.hは、本体のファイル(toneMelody.pde)と同じフォルダにあります。

このプログラムで利用する大域変数を定義します。大域変数は、int型の配列のmelodyとnoteDurationsです。

melodyには、音階が入っていて、noteDurationsには、それぞれの音階に対応する長さが入っています。長さは、4が4分音符、8が8分音符相当です。以下の表のような対応となっています。配列の添え字は0から始まることに注意してください。

配列の添え字 0 1 2 3 4 5 6 7
melody NOTE_C4 NOTE_G3 NOTE_G3 NOTE_A3 NOTE_G3 0 NOTE_B3 NOTE_C4
noteDurations 4 8 8 4 4 4 4 4

setup()

30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
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);
  }
}
 

このプログラムはsetup()にすべての動作を記述しています。つまり、1回だけメロディを演奏して終了です。

for文を使って、配列の大きさ分(8回)ループします。

ループの中では、tone()を使って、音を出します。音を出す長さは、1000をnoteDurationsで定義した数字で割った数を使っています。

その後、noteDuration(noteDurationsではありません)の1.3倍の時間delay()で停止し、noTone()を使って音を止めます。

loop()

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

何もしません。何もしない場合でもloop()を定義しておく必要があります。

バージョン

Hardware:Arduino UNO R3
Software:Arduino 1.8.16

最終更新日

November 1, 2022

inserted by FC2 system