≥{{item.MinNumber}}:
{{pro.LadderPrices[num].viewPrice}}
{{item.viewPrice}}
请点击进入网站
Delivery Address
+ 添加地址
新的货运地址
*为了您能及时收到到货信息,请正确填写手机号。
国家代码添加到收藏夹
Utsource certified used parts
Utsource认证二手为您提供如下保障
1.Utsource会对货物检查,包括外观检测 (外观无严重破损),筛选合格诚信的供应商,确保98%合格率。
2. Some parts are tested by machine.
3.Utsource认证商品60天无条件退货,退款。
本网站上使用的所有产品名称,商标,品牌和徽标均为其各自所有者的财产。 具有这些名称,商标,品牌和徽标的产品的描述或销售仅用于标识目的,并不表示与任何权利所有者有任何隶属关系或授权。
Parameter | Description |
---|---|
Model | SW-420 |
Type | Vibration Sensor Module |
Operating Voltage | 3.3V to 5V DC |
Current Consumption | < 1mA |
Output Type | Normally Closed (NC) |
Sensitivity | Adjustable via potentiometer |
Operating Temperature | -20°C to +70°C |
Dimensions | 30mm x 15mm x 10mm |
Weight | 8g |
Interface | 3-pin JST connector or 3-pin 2.54mm pitch header |
Pins | VCC, GND, OUT |
Power Supply:
Signal Output:
Adjusting Sensitivity:
Connecting to a Microcontroller:
Mounting:
Testing:
const int vibrationPin = 2; // Connect the OUT pin to digital pin 2
void setup() {
pinMode(vibrationPin, INPUT);
Serial.begin(9600);
}
void loop() {
int sensorValue = digitalRead(vibrationPin);
if (sensorValue == HIGH) {
Serial.println("Vibration Detected!");
} else {
Serial.println("No Vibration");
}
delay(1000); // Wait for 1 second before checking again
}
This code reads the state of the vibration sensor and prints "Vibration Detected!" to the serial monitor when a vibration is detected.
(For reference only)QUANTITY | UNIT PRICE | PLUS UNIT PRICE | TOTAL PRICE |
---|---|---|---|
≥1: | US $1.13000 | US $1.06220 | US $1.06220 |
≥5: | US $0.91000 | US $0.85540 | US $4.27700 |
≥10: | US $0.68000 | US $0.63920 | US $6.39200 |
替代产品
Substitute Product Name | Brief Description |
---|---|
KY-002 Vibration Sensor | A small sized vibration sensor module that can detect vibrations and shake. It has a normally closed contact and is compatible with Arduino and other microcontroller platforms. |
SW18010P Vibration Sensor | A high sensitivity vibration sensor with normally closed contact, ideal for detecting minor vibrations and movements in various applications. |
AM312 Mini PIR Motion Sensor | A miniature passive infrared motion sensor that can detect human movement. Though it is motion-oriented, it can serve as an alternative in projects requiring vibration detection through environmental motion. |
PCB Vibration Sensor - SW-420 | An alternative SW-420 module for detecting vibrations, featuring a normally closed contact and is compatible with various microcontroller systems. |
LX-006 Vibration Sensor | A versatile vibration sensor module with normally closed contacts, suitable for applications requiring high sensitivity to vibrations. |
产品用途
The SW-420 Normally Closed Vibration Sensor Module is utilized in various types of circuits where vibration or shock detection is needed. Some common applications and example circuits include:
Security Systems:
Industrial Equipment Monitoring:
Consumer Electronics:
Home Automation Systems:
Automotive Applications:
A basic circuit using an SW-420 vibration sensor module can be designed to trigger an LED or buzzer when vibrations are detected. Below is a simple example:
+Vcc (5V) ---> SW-420 Vcc
GND ---> SW-420 GND
D0 (SW-420) ---> Digital Input Pin on Arduino (e.g., Pin 2)
GND (Arduino) ---> Common GND
Digital Output Pin from Arduino (e.g., Pin 13 for LED) ---> LED (through a current-limiting resistor) ---> GND
OR
Digital Output Pin from Arduino (e.g., Pin 13 for Buzzer) ---> Buzzer (through a current-limiting resistor) ---> GND
const int sensorPin = 2; // Pin connected to D0 of SW-420
const int ledPin = 13; // Pin connected to LED or Buzzer
void setup() {
pinMode(sensorPin, INPUT);
pinMode(ledPin, OUTPUT);
Serial.begin(9600);
}
void loop() {
int sensorValue = digitalRead(sensorPin);
if (sensorValue == LOW) { // Detect vibration (Normally Closed)
digitalWrite(ledPin, HIGH);
Serial.println("Vibration Detected!");
} else {
digitalWrite(ledPin, LOW);
}
delay(100); // Short delay for debounce
}
When a vibration is detected, the SW-420 vibration sensor will change its state, and the Arduino will turn on the LED or buzzer. The Serial.println
function is used here for debugging purposes to monitor detection activity.
全球物流国家列表
国旗 | 国家 | 预计送达时间 | 最低首重费用 | ||
---|---|---|---|---|---|
快递 | 专线 | 快递 (0.5kg) | 专线 (0.05kg) |
订单
Payment
货运
Gift Coupon/Plus service
Returning
Returns are normally accepted when completed within 90 days from the date of the parcel delivered.
Defective ( Please provide a third party quality report of nonconforming products)
Return Freight charges must be prepaid; we will not accept COD shipments.
Warranty
All UTSOURCE purchases have a 90 days money back return policy, plus a 100 days UTSOURCE warranty against any manufacturing defects.This warranty shall not apply to any item where defects have been caused by improper customer assembly, failure by customer to follow instructions, product modification, negligent or improper operation.
SW-420 Normally Closed Vibration Sensor Module
SW-420 Normally Closed Vibration Sensor Module has several brands around the world that may have alternate names for SW-420 Normally Closed Vibration Sensor Module due to regional differences or acquisition. SW-420 Normally Closed Vibration Sensor Module may also be known as the following names:
国家:
United States
快递:( FEDEX,UPS,DHL,TNT)超过300$,免首重0.5kg邮费,超重将单独收费。(美国除外)
Utsource Original Store
总产品: 283306总销售量: 4034894
{{pro.Parameter.Brand}}
{{pro.encapsulation}}
{{pro.Parameter.DateCode}}
{{pro.brief}}
停止生产专家,我们可以提供大量已经停止生产且难以找到的电子零件,以方便维修公司
Reply to
submit