This commit is contained in:
2026-02-12 21:00:02 -08:00
parent 77f8236347
commit 8bdbf227ca
1141 changed files with 1010880 additions and 2 deletions

View File

@@ -0,0 +1,39 @@
/**
* @file streams-generator-volume.ino
* @author Phil Schatzmann
* @brief Determines the output volume (=amplitude)
* @copyright GPLv3
*/
#include "AudioTools.h"
AudioInfo info(44100, 2, 16);
SineWaveGenerator<int16_t> sineWave(32000); // subclass of SoundGenerator with max amplitude of 32000
GeneratedSoundStream<int16_t> sound(sineWave); // Stream generated from sine wave
VolumeMeter out;
StreamCopy copier(out, sound, 1024*2); // copies sound into VolumeMeter
// Arduino Setup
void setup(void) {
// Open Serial
Serial.begin(115200);
while(!Serial);
AudioToolsLogger.begin(Serial, AudioToolsLogLevel::Warning);
// start Volume Meter
out.begin(info);
// Setup sine wave
sineWave.begin(info, N_B4);
Serial.println("started...");
}
// Arduino loop - copy sound to out
void loop() {
copier.copy();
Serial.print(out.volume()); // overall
Serial.print(" ");
Serial.print(out.volume(0)); // left
Serial.print(" ");
Serial.println(out.volume(1)); // right
}