

The 35mm Piezo Transducer by MakerLab (Part ID: 35mm Piezo Transducer) is a versatile electronic component designed to convert electrical energy into mechanical vibrations. It operates based on the piezoelectric effect, where mechanical stress on specific materials generates an electrical charge. This transducer is widely used in applications such as sound generation, ultrasonic cleaning, and sensing.








The following table outlines the key technical details of 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 |
| Capacitance | ~20,000 pF (20 nF) |
| Operating Temperature | -20°C to +70°C |
| Material | Piezoelectric ceramic |
The 35mm Piezo Transducer typically has two terminals:
| Pin | Description |
|---|---|
| Positive (+) | Connects to the positive voltage supply. |
| Negative (-) | Connects to ground or the negative terminal. |
Basic Connection:
Driving with a Microcontroller:
Frequency Considerations:
Below is an example of how to use the 35mm Piezo Transducer with an Arduino UNO to generate a tone:
// Example: Generate a 4 kHz tone using Arduino UNO and 35mm 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 milliseconds
tone(piezoPin, 4000, 500);
// Wait for 500 milliseconds before repeating
delay(500);
}
| Issue | Possible Cause | Solution |
|---|---|---|
| No sound or vibration | Incorrect wiring or insufficient voltage | Verify connections and ensure voltage is within the operating range. |
| Weak or distorted sound | Driving frequency is far from resonant freq. | Adjust the driving frequency closer to 4 kHz. |
| Overheating | Excessive voltage or current | Use a current-limiting resistor and ensure voltage is within limits. |
| Intermittent operation | Loose connections or poor soldering | Check and secure all connections. |
Can I use the 35mm Piezo Transducer for sensing applications?
What is the maximum sound output of this transducer?
Can I drive the transducer directly from an Arduino pin?
How do I clean the transducer?
By following this documentation, you can effectively integrate the MakerLab 35mm Piezo Transducer into your projects for sound generation, sensing, and more!