Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

#include // include FFT library const int SAMPLES = 128; // number of samples to collect int sample[SAMPLES]; // array to store samples int microphonePin

#include // include FFT library

const int SAMPLES = 128; // number of samples to collect

int sample[SAMPLES]; // array to store samples

int microphonePin = A0; // microphone is connected to A0

void setup() {

Serial.begin(9600); // start serial communication

}

void loop() {

// read microphone input and store it in the sample array

for (int i = 0; i < SAMPLES; i++) {

sample[i] = analogRead(microphonePin);

}

// perform FFT on the sample array

FFT.Windowing(sample, SAMPLES, FFT_WIN_TYP_HAMMING, FFT_FORWARD);

FFT.Compute(sample, SAMPLES, FFT_FORWARD);

FFT.ComplexToMagnitude(sample, SAMPLES);

// set threshold level for loudness

int threshold = 100;

// check if the frequency domain data is above or below the threshold

if (sample[0] > threshold) {

// if above threshold, turn on LED

digitalWrite(LED_BUILTIN, HIGH);

} else {

// if below threshold, turn off LED

digitalWrite(LED_BUILTIN, LOW);

}

}

I can't understand what each line of these codes do. Can you explain me each line in detail?

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Design And Relational Theory Normal Forms And All That Jazz

Authors: Chris Date

1st Edition

1449328016, 978-1449328016

More Books

Students also viewed these Databases questions