≥{{item.MinNumber}}:
{{pro.LadderPrices[num].viewPrice}}
{{item.viewPrice}}
คลิกที่นี่เพื่อเข้าสู่เว็บไซต์ Utsource
สวัสดี! เข้าสู่ระบบ หรือ ลงทะเบียนตอนนี้
APP แผ่นข้อมูล 380K likes Utsourceซื้อ(0)
การสอบถาม(0)
Dear customers, due to the implementation of the GDPR policy in Europe, UTSOURCE has also made adjustment accordingly to meet the policy requirements. Please read the new privacy policy carefully and this window will no longer pop up after you accept it.
Delivery Address
+ เพิ่มที่อยู่
ที่อยู่จัดส่งใหม่
* กรุณากรอกหมายเลขโทรศัพท์มือถือให้ถูกต้องเพื่อให้แน่ใจว่าคุณจะได้รับข้อมูลการติดตามตรงเวลา.
รหัสประเทศ
โปรด
Utsource certified used parts
ชิ้นส่วนที่ใช้แล้วที่ได้รับการรับรองจาก Utsource ให้การรับประกันดังต่อไปนี้:
1. Utsource จะตรวจสอบสินค้า รวมถึงการตรวจสอบลักษณะภายนอก (ไม่มีความเสียหายที่รุนแรงต่อรูปลักษณ์) เลือกซัพพลายเออร์ที่มีคุณภาพและซื่อสัตย์ และรับประกันอัตราคุณภาพ 98%
2. ชิ้นส่วนบางส่วนจะถูกทดสอบโดยเครื่องจักร.
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) |
คำสั่งซื้อ
การชำระเงิน
การจัดส่ง
คูปองของขวัญ/บริการพลัส
การคืนสินค้า
การคืนสินค้าจะได้รับการยอมรับเมื่อเสร็จสิ้นภายใน 90 วันนับจากวันที่พัสดุจัดส่ง
มีข้อบกพร่อง (กรุณาให้รายงานคุณภาพจากบุคคลที่สามสำหรับผลิตภัณฑ์ที่ไม่เป็นไปตามข้อกำหนด)
ค่าขนส่งคืนต้องชำระล่วงหน้า; เราจะไม่รับการจัดส่งแบบ COD
การรับประกัน
การซื้อทั้งหมดของ UTSOURCE มีนโยบายการคืนเงินภายใน 90 วัน พร้อมการรับประกัน UTSOURCE 100 วันสำหรับข้อบกพร่องในการผลิต การรับประกันนี้จะไม่ใช้กับสินค้าที่มีข้อบกพร่องที่เกิดจากการประกอบที่ไม่ถูกต้องของลูกค้า ความล้มเหลวของลูกค้าในการปฏิบัติตามคำแนะนำ การดัดแปลงผลิตภัณฑ์ การดำเนินการที่ประมาทหรือไม่เหมาะสม
SW-420 Normally Closed Vibration Sensor Module
SW-420 Normally Closed Vibration Sensor Module มีหลายแบรนด์ทั่วโลกที่อาจมีชื่อทางเลือกสำหรับ SW-420 Normally Closed Vibration Sensor Module เนื่องจากความแตกต่างทางภูมิศาสตร์หรือการเข้าซื้อกิจการ SW-420 Normally Closed Vibration Sensor Module อาจรู้จักในชื่อดังต่อไปนี้:
ตัวเลือกการซื้อ
จัดส่งฟรีสำหรับน้ำหนัก 0.5 กก. แรกสำหรับการสั่งซื้อมากกว่า US $300.00(ยกเว้นสหรัฐอเมริกา)
ด่วน: ประมาณการมาถึง {0}
การจัดส่งมาตรฐาน: ประมาณการมาถึง {0}
ประเทศ:
United States
จัดส่งด่วน:(FEDEX, UPS, DHL, TNT)จัดส่งฟรีสำหรับน้ำหนักแรก 0.5 กก. สำหรับคำสั่งซื้อที่มากกว่า 300$, น้ำหนักเกินจะมีการคิดค่าบริการแยกต่างหาก(ยกเว้นสหรัฐอเมริกา)
UTSOURCE
{{pro.Parameter.Brand}}
{{pro.encapsulation}}
{{pro.Parameter.DateCode}}
{{pro.brief}}
ขั้นต่ำ:{{pro.BuyQuantity}}
การจัดส่งมาตรฐาน
ด่วน: ประมาณการมาถึง {0}
การจัดส่งมาตรฐาน: ประมาณการมาถึง {0}
ผู้เชี่ยวชาญด้านการหยุดการผลิต, เราสามารถจัดหาชิ้นส่วนอิเล็กทรอนิกส์จำนวนมากที่หยุดการผลิตและหายาก, เพื่ออำนวยความสะดวกให้กับบริษัทซ่อมบำรุง
Reply to
submit