| 647 | } |
| 648 | |
| 649 | bool isAudioFile(String filepath) { |
| 650 | return filepath.endsWith(".opus") || filepath.endsWith(".rtttl") || filepath.endsWith(".txt") || |
| 651 | filepath.endsWith(".wav") || filepath.endsWith(".mod") || filepath.endsWith(".mp3") || |
| 652 | filepath.endsWith(".aac") || filepath.endsWith(".flac"); |
| 653 | } |
| 654 | |
| 655 | void playTone(unsigned int frequency, unsigned long duration, short waveType) { |
| 656 | if (!bruceConfig.soundEnabled) return; |