

The Cảm Biến Âm Thanh (Sound Sensor) is a versatile electronic component designed to detect sound levels and convert them into electrical signals. Manufactured by Q with the part ID Q, this sensor is widely used in applications such as sound level monitoring, voice recognition, and audio-based automation systems. Its ability to sense sound makes it an essential component in projects requiring audio input or environmental sound detection.








The following table outlines the key technical details of the Cảm Biến Âm Thanh:
| Parameter | Value |
|---|---|
| Operating Voltage | 3.3V - 5V |
| Output Type | Analog and Digital |
| Sensitivity Adjustment | Potentiometer (onboard) |
| Frequency Range | 100 Hz - 10 kHz |
| Dimensions | 32mm x 15mm x 8mm |
| Operating Temperature | -20°C to 70°C |
The Cảm Biến Âm Thanh typically has a 3-pin interface. The pinout is described in the table below:
| Pin | Name | Description |
|---|---|---|
| 1 | VCC | Power supply pin. Connect to 3.3V or 5V. |
| 2 | GND | Ground pin. Connect to the ground of the circuit. |
| 3 | OUT | Output pin. Provides an analog signal proportional to sound intensity or a |
| digital HIGH/LOW signal based on the threshold set by the potentiometer. |
Below is an example of how to use the Cảm Biến Âm Thanh with an Arduino UNO to read sound levels:
// Example code for using the Cảm Biến Âm Thanh with Arduino UNO
const int soundSensorPin = A0; // Analog pin connected to the sensor's OUT pin
const int threshold = 500; // Threshold for sound detection (adjust as needed)
void setup() {
Serial.begin(9600); // Initialize serial communication
pinMode(soundSensorPin, INPUT); // Set the sensor pin as input
}
void loop() {
int soundLevel = analogRead(soundSensorPin); // Read the analog value from the sensor
// Print the sound level to the Serial Monitor
Serial.print("Sound Level: ");
Serial.println(soundLevel);
// Check if the sound level exceeds the threshold
if (soundLevel > threshold) {
Serial.println("Sound detected!");
}
delay(100); // Small delay to avoid flooding the Serial Monitor
}
No Output Signal:
Inconsistent Readings:
Digital Output Always HIGH or LOW:
Low Sensitivity:
Q: Can this sensor detect specific sounds like speech?
A: The Cảm Biến Âm Thanh is designed to detect sound intensity, not specific sound patterns. For speech recognition, additional processing is required.
Q: Can I use this sensor outdoors?
A: Yes, but ensure it is protected from moisture and extreme environmental conditions.
Q: What is the difference between analog and digital output?
A: Analog output provides a continuous voltage proportional to sound intensity, while digital output provides a HIGH/LOW signal based on the set threshold.
This concludes the documentation for the Cảm Biến Âm Thanh. For further assistance, refer to the manufacturer's datasheet or contact technical support.