
VB-1 Vibration Sensor
Very small and sensitive vibration sensor with easy to use switch output.
Usefull component for your Alarm projects.
Made In The UK
INTERNATIONAL SHIPPING from £3.40
Royal Mail Signed For 1st Class (UK only) £2.50
AIRMAIL without Tracking (Whole World) £3.60 (£3.40 for EU)
ROYAL MAIL with Tracking (Whole World) £9.50
DHL Express £29-£44 depends on location
Welcome Sign in
Very small and sensitive vibration sensor with easy to use switch output.
Usefull component for your Alarm projects.
Very small and sensitive vibration sensor with easy to use switch output.
You can use this sensor for your DIY alarm circuits or any funny project that require the movement detection.
For example you can make a blinky toy for your pets ;)
Features:
Design: waterproof, moistureproof, dustproof
Voltage: <24V
Current: <1mA
Temperature: <80℃
Size. 6x10 mm
Sample Arduino Source Code
// Vibration Sensor Sample for Arduino
// http://www.flytron.com
void setup() {
pinMode(13, OUTPUT); // Status LED
pinMode(8,INPUT); // Vibration Detector between Pin8 and Ground
digitalWrite(8,HIGH); // Enable PULL-UP
}
void loop() {
while (digitalRead(8)); // pass only the vibration sensor OFF
while (!digitalRead(8)); // pass only the vibration sensor ON
digitalWrite(13, HIGH); // set the LED on
delay(1000); // wait 1 second
digitalWrite(13, LOW); // set the LED off
}