Wish List 0

Sw 18015P Vibration Sensor Switch Tilt Sensor For Arduino

Rs. 35.00 Rs. 42.00

  • Product Code: SEN-VIB
  • SKU -
  • Availability: In Stock
  • For Bulk Order 9962060070
    Quick support on WhatsApp (+919962060070) only between morning 11am-4pm, no call will be answered
1. The Tilt Sensor Vibration Alarm Vibration Switch Module for Arduino come with the basic components for operation. Supplying power and it is good to be used. Attach it to object and it will detect whether the object is tilt. Simple usage as it is the digital output, so you will know the object is tilt or not by reading the output.
2. It uses SW-460D or SW-520D tilt sensor. The Tilt Sensor is the ball rolling type, NOT Mercury type.
3. Comes with an M3 mounting hole for ease of attaching it to an object. On board, it provides a tilt switch, high sensitivity and commonly being used for tilt detection. The module comes with power LED and status LED for the visual indicator.
4. The module will output logic LOW when the module is not tilted until the threshold angle; it will output logic HIGH when it is tilted over the threshold angle. We have tested, the tilt angle is quite big, from 45 degrees to 130 degrees. However, it depends on the angular velocity too. It can be used as a vibration sensor too.
5. It can be interfaced with any micro-controller with digital input such as 8051, PIC, SK40C, SK28A, SKds40A,
Arduino series for tilt detection capability. Also, not to forget, interface with Relay module offer tilt switch.

 >> Pin Connection:
        -VCC = 5V
       -GND = 0V.
       -DO = digital output from module

  >>   Note: 
      If the DO is not working, you might need to turn the on-board potentiate to center.

  >> Features:
          -Ball Rolling type of tilt sensor.
          -This small module is easy to use.
          -A fixed bolt hole for easy installation
          -Wide voltage LM393 compactor

SPECIFICATIONS:

   Operating Voltage(VDC)     :3.3 to 5

   Shipment Weight                 :    0.085 kg

   Shipment Dimensions        :5 × 5 × 1 cm

OVERVIEW:

 -Operating voltage: 3.3 to 5VDC

 -Ball Rolling type of tilt sensor.

 -This small module is easy to use.

 -A fixed bolt hole for easy installation

 -Wide voltage LM393 comparator

 -₹ 99.00 (inc GST)

 -₹ 83.9 (+18% GST extra)

PACKAGE INCLUDES:

   1 PCS x Sw 18015P Vibration Sensor


//SOURCE CODE TAKEN FROM BELOW LINK

//https://www.instructables.com/How-to-use-a-vibration-sensor-shake-switch-Arduino/

/* Vibration Sensor (Shake Switch) - Testing with buzzer


   In this tutorial we will use one vibration sensor (or shake switch) 

   to make a beep sound from a buzzer while we shake our breadboard.

   

   Find more info and video here: http://bit.ly/1iDbc2Q

   

   Dev: Michalis Vasilakis - Date: 9/9/2015 - www.ardumotive.com       */

   

const int buzzer = 8; //Buzzer connected to pin 8 of Arduino uno / mega

int sensor;           //Variable to store analog value (0-1023)



void setup()

{

Serial.begin(9600);      //Only for debugging

pinMode(buzzer, OUTPUT);

}


void loop()

{

sensor = analogRead(A0);

//While sensor is not moving, analog pin receive 1023~1024 value

if (sensor<1022){

tone(buzzer, 500);

Serial.print("Sensor Value: ");

Serial.println(sensor);

}

else{ 

noTone(buzzer);

Serial.print("Sensor Value: ");

Serial.println(sensor);

}

https://youtu.be/kiDQTBkPmpY

15 days

Write a review

Please login or register to review