You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
462 B
C
26 lines
462 B
C
/*
|
|
* ringtones.h
|
|
*
|
|
* Created on: Nov 28, 2022
|
|
* Author: pablo
|
|
*/
|
|
|
|
#ifndef BUZZER_RINGTONES_H_
|
|
#define BUZZER_RINGTONES_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
#include "notes.h"
|
|
|
|
// mario mais theme
|
|
extern uint16_t mario_theme_melody[];
|
|
extern uint16_t mario_theme_time[];
|
|
extern uint16_t mario_theme_len;
|
|
|
|
// Underworld melody
|
|
extern uint16_t underworld_melody[];
|
|
extern uint16_t underworld_time[];
|
|
extern uint16_t underworld_len;
|
|
|
|
#endif /* BUZZER_RINGTONES_H_ */
|