# Big Sound

![](/files/-MS2Lp9EuQR4rX1Ku04t)

**Introduction**\
The keyestudio microphone sensor is typically used in detecting the loudness in ambient environment. The Arduino can collect its output signal by analog input interface.\
The S pin is analog output, that is voltage signal real-time output of microphone. The sensor comes with a potentiometer, so that you can turn it to adjust the signal gain.\
It also has a fixed hole so that you can mount the sensor on any other devices. You can use it to make some interactive works, such as a voice operated switch.

![](/files/-Mbzq8Ibk3X2Q1sRh4vL)

**Specification**

* Operating voltage: 3.3V-5V（DC）
* Operating current: <10mA
* Interface：3PIN
* Output signal: Analog

**Connection Diagram**

![](/files/-MbzqSXAdR_aD5uQ6Fv1)

**Sample Code**\\

```
int sensorPin =A0 ;  // define analog port A0
int value = 0;    //set value to 0
void setup() 
{
 Serial.begin(9600); //set the baud rate to 9600
} 
void loop() 
{
value = analogRead(sensorPin);  //set the value as the value read from A0
Serial.println(value, DEC);  //print the value and line wrap
delay(200);  //delay 0.2S
} 
```

\
**Test Result**\
Connect it up and upload the code successfully, then open the serial monitor on the right upper corner of Arduino IDE.\
The analog value will pop up on the monitor window. The greater the sound, the greater the analog value is.

![](/files/-MbzrM7o2sRC3-ub0XyN)


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://learn.arduinosa.co.za/sensor-kits/37-in-1-sensor-kit/big-sound.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
