sound.ino 319 B

1234567891011121314151617181920212223242526
  1. void initSoundPin()
  2. {
  3. pinMode(SOUND_PIN, OUTPUT);
  4. }
  5. void basePowerOnBeep()
  6. {
  7. for (int i = 200; i <= 600; i++)
  8. {
  9. tone(SOUND_PIN, i);
  10. delay(3);
  11. }
  12. noTone(SOUND_PIN);
  13. }
  14. void basePowerOffBeep()
  15. {
  16. for (int i = 600; i >= 200; i--)
  17. {
  18. tone(SOUND_PIN, i);
  19. delay(3);
  20. }
  21. noTone(SOUND_PIN);
  22. }