@@ -202,7 +202,7 @@ uint16_t AudioAnalyzeGuitarTuner::estimate( int64_t *yin, int64_t *rs, uint16_t | |||
* @param threshold Allowed uncertainty | |||
* @param cpu_max How much cpu usage before throttling | |||
*/ | |||
void AudioAnalyzeGuitarTuner::initialize( float threshold ) { | |||
void AudioAnalyzeGuitarTuner::begin( float threshold ) { | |||
__disable_irq( ); | |||
process_buffer = false; | |||
yin_threshold = threshold; |
@@ -57,7 +57,7 @@ public: | |||
* | |||
* @return none | |||
*/ | |||
void initialize( float threshold ); | |||
void begin( float threshold ); | |||
/** | |||
* sets threshold value |
@@ -61,7 +61,7 @@ void setup() { | |||
* Initialize the yin algorithm's absolute | |||
* threshold, this is good number. | |||
*/ | |||
tuner.initialize(.15); | |||
tuner.begin(.15); | |||
pinMode(LED_BUILTIN, OUTPUT); | |||
playNoteTimer.begin(playNote, 1000); | |||
} |