arduino-audio-tools
|
Generates pink noise. More...
#include <SoundGenerator.h>
Public Member Functions | |
PinkNoiseGenerator (T amplitude=32767) | |
the amplitude defines the max value which is generated | |
virtual AudioInfo | audioInfo () |
Provides the AudioInfo. | |
virtual bool | begin () |
virtual bool | begin (AudioInfo info) |
virtual AudioInfo | defaultConfig () |
Provides the default configuration. | |
virtual void | end () |
ends the processing | |
virtual bool | isActive () |
virtual size_t | readBytes (uint8_t *data, size_t len) |
Provides the data as byte array with the requested number of channels. | |
T | readSample () |
Provides a single sample. | |
virtual void | setAudioInfo (AudioInfo info) |
Defines/updates the AudioInfo. | |
virtual void | setFrequency (float frequency) |
Abstract method: not implemented! Just provides an error message... | |
Protected Attributes | |
bool | active = false |
bool | activeWarningIssued = false |
unsigned int | amplitude |
AudioInfo | info |
T | key |
T | max_key |
RingBuffer< uint8_t > | ring_buffer {0} |
unsigned int | white_values [5] |
Generates pink noise.
|
inlinevirtualinherited |
Checks if the begin method has been called - after end() isActive returns false