Revision 4a29a79b8f1cd58a614af82c3bb5d40fdda85d48 authored by g3gg0 on 08 October 2016, 14:22:41 UTC, committed by g3gg0 on 08 October 2016, 14:22:41 UTC
2 parent s 45c9e2a + 2791dd8
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