

The Piezo Sensor (Manufacturer: Diode House, Part ID: Piezo Disc) is a versatile electronic component that generates an electrical charge when subjected to mechanical stress. This property makes it ideal for applications requiring the detection of pressure, vibration, or acceleration. Piezo sensors are widely used in various fields, including industrial monitoring, musical instruments, medical devices, and consumer electronics.








The following table outlines the key technical details of the Piezo Sensor (Piezo Disc):
| Parameter | Value |
|---|---|
| Manufacturer | Diode House |
| Part ID | Piezo Disc |
| Operating Voltage | 0 - 30 V |
| Output Voltage Range | Up to 90 V (peak-to-peak) |
| Operating Frequency | 1 - 5 kHz |
| Sensitivity | ~50 mV/g (varies by model) |
| Diameter | 27 mm |
| Thickness | 0.5 mm |
| Material | Lead zirconate titanate (PZT) |
| Operating Temperature | -20°C to 70°C |
The Piezo Sensor typically has two terminals:
| Pin | Description |
|---|---|
| Positive (+) | Connects to the positive input of the circuit. This terminal generates a positive voltage when the sensor is stressed. |
| Negative (-) | Connects to the ground or negative input of the circuit. |
Below is an example of how to connect and read data from a Piezo Sensor using an Arduino UNO:
// Piezo Sensor Example with Arduino UNO
// Reads the analog signal from the Piezo Sensor and prints it to the Serial Monitor.
const int piezoPin = A0; // Connect the positive terminal of the Piezo Sensor to A0
// and the negative terminal to GND.
void setup() {
Serial.begin(9600); // Initialize serial communication at 9600 baud
}
void loop() {
int sensorValue = analogRead(piezoPin); // Read the analog value from the sensor
Serial.println(sensorValue); // Print the sensor value to the Serial Monitor
delay(100); // Delay for 100 ms to avoid flooding the Serial Monitor
}
No Output Signal:
Weak Signal:
Erratic Readings:
Sensor Damage:
Q1: Can the Piezo Sensor be used to generate sound?
A1: Yes, the Piezo Sensor can act as a buzzer or speaker when connected to an AC signal source.
Q2: How do I measure force using the Piezo Sensor?
A2: The output voltage of the sensor is proportional to the applied force. Use a calibrated circuit to convert the voltage into a force measurement.
Q3: Can the Piezo Sensor be used for energy harvesting?
A3: Yes, the Piezo Sensor can generate electrical energy from mechanical vibrations, but the output power is typically low and requires a rectifier and storage circuit.
Q4: What is the lifespan of the Piezo Sensor?
A4: The lifespan depends on the operating conditions, but under normal use, it can last for several years. Avoid excessive stress and extreme temperatures to maximize its longevity.