MCB1700_Welcome/audio.h

21 lines
276 B
C
Raw Normal View History

2020-11-15 21:29:25 +01:00
/*! @file audio.h
@brief play sound
@author Lukas Fürderer
@version V1.0
@date 15.11.2020
This file contains the main app function and init.
*/
#ifndef AUDIO_H
#define AUDIO_H
#include <stdbool.h>
void vStartAudio(void);
2020-11-30 18:49:36 +01:00
void vUpdateLyrics(void);
#endif