Revision a06e836219da7b58f8d8aaee4f402a5e6f0e902d authored by Giovanni C on 10 February 2014, 08:41:37 UTC, committed by Giovanni C on 10 February 2014, 08:41:37 UTC
1 parent 2915800
Raw File
beep.h
#ifndef _beep_h_
#define _beep_h_

/* beep playing */
void beep();
void beep_custom(int duration, int frequency, int wait);
void beep_times(int times);
void unsafe_beep(); /* also beeps while recording */

/* wav recording */
void WAV_StartRecord(char* filename);
void WAV_StopRecord();
#endif

back to top