Stufin
Home Quick Cart Profile

35mm Piezoelectric Sensor without Wire

Buy Now on Stufin

Diameter

35mm

Height

10mm

Material

Piezoelectric ceramic (PZT)

Sensitivity

10-50 mV/g (typical)

Frequency Range

1 Hz to 10 kHz

Operating Temperature

-20C to 80C

Storage Temperature

-30C to 85C

Humidity

5% to 95% RH (non-condensing)

Ordering Information

To order the 35mm Piezoelectric Sensor without Wire, please specify the following

Quantity

Required quantity of sensors

Packaging

Individual packaging or reel packaging (for large quantities)

Lead Time

Standard or expedited lead time (subject to availability)

Warranty and Support

The 35mm Piezoelectric Sensor without Wire is backed by a one-year limited warranty. For technical support, please contact our dedicated support team at [support@example.com](mailtosupport@example.com) or visit our website at [www.example.com](http://www.example.com).

Pin Configuration

  • Component Documentation: 35mm Piezoelectric Sensor without Wire
  • The 35mm Piezoelectric Sensor without Wire is a versatile and compact sensor used to detect vibrations, pressure, and acceleration. This documentation provides a detailed explanation of the sensor's pins and their connections.
  • Pinout:
  • The 35mm Piezoelectric Sensor without Wire has 2 pins, labeled as follows:
  • Pin 1: Signal (S)
  • Function: Output signal from the piezoelectric element
  • Description: This pin outputs an analog voltage signal that corresponds to the detected vibration, pressure, or acceleration.
  • Connection:
  • + Connect to an analog-to-digital converter (ADC) or an amplifier circuit to process the signal.
  • + Ensure the ADC or amplifier circuit is capable of handling the sensor's output voltage range (typically 0-5V).
  • Pin 2: Ground (GND)
  • Function: Reference ground for the sensor
  • Description: This pin provides a reference ground connection for the sensor.
  • Connection:
  • + Connect to the ground terminal of the power supply or the circuit's ground plane.
  • + Ensure a solid connection to prevent noise and interference.
  • Connection Structure:
  • To connect the 35mm Piezoelectric Sensor without Wire:
  • 1. Secure the sensor: Mount the sensor to a stable surface or fixture using a suitable adhesive or mechanical fastener.
  • 2. Connect Pin 1 (Signal):
  • Connect one end of a jumper wire or a signal cable to Pin 1 (Signal).
  • Connect the other end to an ADC or an amplifier circuit's input terminal.
  • 3. Connect Pin 2 (Ground):
  • Connect one end of a jumper wire or a ground cable to Pin 2 (Ground).
  • Connect the other end to the ground terminal of the power supply or the circuit's ground plane.
  • 4. Power supply: Ensure a stable power supply is provided to the circuit, if required.
  • 5. Signal processing: Process the output signal from the ADC or amplifier circuit according to your application's requirements.
  • Important Notes:
  • Handle the sensor with care to avoid damaging the piezoelectric element.
  • Ensure proper electrical isolation and shielding to minimize noise and interference.
  • Follow proper safety precautions when working with electrical circuits.
  • By following these connection guidelines, you can effectively integrate the 35mm Piezoelectric Sensor without Wire into your IoT project or application.

Code Examples

Component Documentation: 35mm Piezoelectric Sensor without Wire
Overview
The 35mm Piezoelectric Sensor without Wire is a compact, wire-free sensor designed to detect vibrations, impacts, and movements. It uses piezoelectric materials to convert mechanical stress into electrical signals, making it an ideal choice for IoT applications such as shock detection, vibration monitoring, and proximity sensing.
Technical Specifications
Diameter: 35mm
 Thickness: 2.5mm
 Operating Temperature: -20C to 70C
 Sensitivity: 10mV/g (10%)
 Frequency Range: 1Hz to 10kHz
 Output Impedance: 1k (20%)
 Power Supply: None (passive device)
Code Examples
### Example 1: Basic Vibration Detection using Arduino
In this example, we'll use the 35mm Piezoelectric Sensor without Wire to detect vibrations and trigger an LED to turn on when a threshold is exceeded.
Hardware Requirements:
35mm Piezoelectric Sensor without Wire
 Arduino Board (e.g., Uno or Nano)
 LED
 Breadboard
 Jumper Wires
Software Requirements:
Arduino IDE
Code:
```c
const int sensorPin = A0;  // Analog input pin for sensor
const int ledPin = 13;    // Digital output pin for LED
const int threshold = 200; // Adjust this value to set the vibration threshold
void setup() {
  pinMode(ledPin, OUTPUT);
}
void loop() {
  int sensorValue = analogRead(sensorPin);
  if (sensorValue > threshold) {
    digitalWrite(ledPin, HIGH);
  } else {
    digitalWrite(ledPin, LOW);
  }
  delay(10); // Adjust this value to set the sampling rate
}
```
### Example 2: IoT-based Shock Detection using Raspberry Pi and Python
In this example, we'll use the 35mm Piezoelectric Sensor without Wire to detect shocks and send a notification to a remote server using Python and the Raspberry Pi.
Hardware Requirements:
35mm Piezoelectric Sensor without Wire
 Raspberry Pi
 Breadboard
 Jumper Wires
Software Requirements:
Python 3.x
 RPi.GPIO library
 requests library (for HTTP requests)
Code:
```python
import RPi.GPIO as GPIO
import time
import requests
GPIO.setmode(GPIO.BCM)
sensor_pin = 17  # GPIO pin for sensor
threshold = 200  # Adjust this value to set the shock threshold
def send_notification():
    url = "https://example.com/notify"
    headers = {"Content-Type": "application/json"}
    data = {"event": "shock_detected"}
    response = requests.post(url, headers=headers, json=data)
    print("Notification sent:", response.status_code)
while True:
    sensor_value = GPIO.input(sensor_pin)
    if sensor_value > threshold:
        send_notification()
    time.sleep(0.1)  # Adjust this value to set the sampling rate
```
Note: In this example, we assume you have a remote server set up to receive notifications. You'll need to modify the `url` variable to point to your server's API endpoint.
Tips and Considerations
When using the 35mm Piezoelectric Sensor without Wire, ensure proper mounting and mechanical coupling to maximize sensitivity and accuracy.
 For more advanced applications, consider using signal conditioning circuits or filters to improve signal quality and reduce noise.
 When working with high-impedance sensors like this one, ensure your analog-to-digital converter (ADC) has a suitable input impedance to prevent signal attenuation.