1
0

sound.h 206 B

12345678910111213
  1. #ifndef _SOUND_H_
  2. #define _SOUND_H_
  3. #define SOUND_PIN 53
  4. #define BASE_POWEROFF_BEEP 0
  5. #define BASE_POWERON_BEEP 1
  6. void initSoundPin();
  7. void basePowerOnBeep();
  8. void basePowerOffBeep();
  9. #endif