mirror of
https://github.com/RobTillaart/Arduino.git
synced 2024-10-03 18:09:02 -04:00
45 lines
848 B
C++
45 lines
848 B
C++
#pragma once
|
|
//
|
|
// FILE: WaveMix.h
|
|
// AUTHOR: Rob Tillaart
|
|
// VERSION: 0.1.3
|
|
// PURPOSE: Arduino library to mix two signals (A and B) with an adaptive weight.
|
|
// URL: https://github.com/RobTillaart/WaveMix
|
|
|
|
|
|
#include "Arduino.h"
|
|
|
|
#define WAVEMIX_LIB_VERSION (F("0.1.3"))
|
|
|
|
|
|
class WaveMix
|
|
{
|
|
public:
|
|
explicit WaveMix();
|
|
|
|
// weight1 + weight2 != 0
|
|
bool setWeight(float weight1, float weight2);
|
|
float getW1() { return _weight[0]; };
|
|
float getW2() { return _weight[1]; };
|
|
// preferably 0 <= percentage <= 100
|
|
bool setPercentage(float percentage);
|
|
|
|
void setGain(float gain);
|
|
float getGain();
|
|
|
|
void setOffset(float offset);
|
|
float getOffset();
|
|
|
|
float mix(float s1, float s2 = 0);
|
|
|
|
|
|
private:
|
|
float _weight[2] = { 0.5, 0.5 };
|
|
float _gain = 1.0;
|
|
float _offset = 0.0;
|
|
|
|
};
|
|
|
|
|
|
// -- END OF FILE --
|