mirror of
https://github.com/bendtherules/Patient-counter-esp8266.git
synced 2026-08-18 13:52:39 +00:00
12 lines
193 B
C
12 lines
193 B
C
#include <Arduino.h>
|
|
|
|
enum TONE_TYPE {
|
|
TONE_BEEP,
|
|
TONE_BEEP_TWICE,
|
|
TONE_BEEP_ONE_EIGHT,
|
|
TONE_BEEP_LONG,
|
|
TONE_SARE_JAHA_SE_ACCHA,
|
|
};
|
|
|
|
void playBuzzer(uint8_t pin, TONE_TYPE toneType);
|