mirror of
https://github.com/DashyFox/StackSport.git
synced 2025-05-04 15:20:16 +00:00
29 lines
591 B
C
29 lines
591 B
C
/*
|
|
* SoundMelody.h
|
|
*
|
|
* Created on: Oct 2, 2024
|
|
* Author: DashyFox
|
|
*/
|
|
|
|
#ifndef INC_SOUNDMELODY_H_
|
|
#define INC_SOUNDMELODY_H_
|
|
|
|
#include "Sound.h"
|
|
|
|
#define melody(melodyName) sound_play_melody(melodyName, sizeof(melodyName)/sizeof(Note_t), 3, 0)
|
|
extern Note_t melody_buttonClick[1];
|
|
extern Note_t melody_buttonClickHold[1];
|
|
extern Note_t melody_timerClick[1];
|
|
extern Note_t melody_start[12];
|
|
extern Note_t melody_NoBall[14];
|
|
extern Note_t melody_Error[3];
|
|
|
|
extern Note_t melody_Ball_1[3];
|
|
|
|
extern Note_t melody_Done[9];
|
|
|
|
extern Note_t melody_OK[3];
|
|
|
|
|
|
#endif /* INC_SOUNDMELODY_H_ */
|