

The 35mm Piezo Transducer by MakerLab (Part ID: 35mm Piezo Transducer) is a versatile electronic component designed to convert electrical energy into mechanical vibrations or sound waves. This component is widely used in audio applications, such as buzzers and alarms, as well as in sensors and actuators for detecting vibrations or generating sound.








Below are the key technical details for the 35mm Piezo Transducer:
| Parameter | Value |
|---|---|
| Manufacturer | MakerLab |
| Part ID | 35mm Piezo Transducer |
| Diameter | 35 mm |
| Operating Voltage | 3V to 30V |
| Resonant Frequency | 4 kHz (typical) |
| Sound Pressure Level | 85 dB @ 10 cm (at 4 kHz, 12V) |
| Capacitance | 20,000 pF ± 30% |
| Operating Temperature | -20°C to +70°C |
| Housing Material | Brass |
The 35mm Piezo Transducer typically has two terminals:
| Pin | Description |
|---|---|
| Positive (+) | Connect to the positive voltage supply. |
| Negative (-) | Connect to ground or the negative terminal. |
Basic Connection:
Driving with a Microcontroller:
Generating Sound:
Below is an example Arduino sketch to generate a 4 kHz tone using the piezo transducer:
// Define the pin connected to the piezo transducer
const int piezoPin = 8;
void setup() {
// Set the piezo pin as an output
pinMode(piezoPin, OUTPUT);
}
void loop() {
// Generate a 4 kHz tone for 500 ms
tone(piezoPin, 4000, 500);
delay(1000); // Wait for 1 second before repeating
// Generate a 2 kHz tone for 500 ms
tone(piezoPin, 2000, 500);
delay(1000); // Wait for 1 second before repeating
}
No Sound Output:
Low Sound Volume:
Distorted Sound:
Overheating:
Q1: Can I use the piezo transducer to detect vibrations?
A1: Yes, the piezo transducer can act as a sensor to detect vibrations or pressure changes. Connect it to an amplifier circuit to measure the output signal.
Q2: What is the maximum sound pressure level this transducer can produce?
A2: The transducer can produce a sound pressure level of 85 dB at 10 cm when driven at 4 kHz with 12V.
Q3: Can I use this transducer with a 3.3V microcontroller?
A3: Yes, the transducer can operate at 3V, but the sound output may be lower compared to higher voltages.
Q4: How do I mount the transducer in my project?
A4: The transducer can be mounted using adhesive or screws. Ensure it is securely fixed to avoid unwanted vibrations.
By following this documentation, you can effectively integrate the 35mm Piezo Transducer into your projects for reliable and efficient performance.