sound.h 519 B

1234567891011121314151617181920
  1. /**********************************************************
  2. Description: 下位机arduinoMega2560上的蜂鸣器模块头文件,
  3. 定义蜂鸣器连接的引脚,各种声音的宏定义。
  4. Author: www.corvin.cn
  5. History: 20180209: init this file;
  6. ***********************************************************/
  7. #ifndef _SOUND_H_
  8. #define _SOUND_H_
  9. #define SOUND_PIN 53
  10. #define BASE_POWEROFF_BEEP 0
  11. #define BASE_POWERON_BEEP 1
  12. void initSoundPin();
  13. void basePowerOnBeep();
  14. void basePowerOffBeep();
  15. #endif