Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed
Interface/SoundData.h
- Committer:
- el19zf
- Date:
- 2020-05-15
- Revision:
- 14:42b8a91e463c
- Child:
- 15:3571beaaeed8
File content as of revision 14:42b8a91e463c:
#ifndef SOUNDDATA_H
#define SOUNDDATA_H
/*const int sound_data_wel[5] = {
*NOTE_C3,NOTE_C3,NOTE_C2,NOTE_C3,NOTE_C3,NOTE_C5,NOTE_C3,
NOTE_C2,NOTE_C3,NOTE_C1,NOTE_C1,NOTE_C2,NOTE_C3,NOTE_C5,
NOTE_C3,NOTE_C2,NOTE_C2,NOTE_C1,NOTE_C2,NOTE_C3,NOTE_C5,
NOTE_C3,NOTE_C6,NOTE_C5,NOTE_C6,NOTE_C5,NOTE_C5,NOTE_C3,NOTE_C5
};*/
const int sound_data_menu[5] = {
NOTE_A3,NOTE_B3,NOTE_C3,NOTE_D4,NOTE_E4
};
const int sound_dur_menu[5] = {
10, 10, 10, 10, 10
};//0.1s
const int sound_data_begin[3] = {
650, 650, 750
};
const int sound_dur_begin[3] = {
2, 2, 2
};//0.5s
const int sound_data_col[2] = {
600, 100
};
const int sound_dur_col[2] = {
8, 8
};//0.125s
#endif