2014-10-28 09:58:25 +01:00
|
|
|
/*
|
|
|
|
* Copyright 2014 Freie Universität Berlin
|
|
|
|
*
|
|
|
|
* This file is subject to the terms and conditions of the GNU Lesser
|
|
|
|
* General Public License v2.1. See the file LICENSE in the top level
|
|
|
|
* directory for more details.
|
|
|
|
*/
|
|
|
|
|
2017-01-18 13:00:05 +01:00
|
|
|
#ifndef BUZZER_H
|
|
|
|
#define BUZZER_H
|
2010-12-13 21:19:58 +01:00
|
|
|
|
2015-09-03 18:33:17 +02:00
|
|
|
#include <stdint.h>
|
|
|
|
|
2014-10-13 15:25:50 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2015-09-03 18:33:17 +02:00
|
|
|
void buzzer_beep(uint8_t pitch, uint32_t duration);
|
2010-12-13 21:19:58 +01:00
|
|
|
|
2014-10-13 15:25:50 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-12-13 21:19:58 +01:00
|
|
|
#endif /* BUZZER_H */
|