Wish List 0

Sw 520D Tilt Sensor

Rs. 43.00 Rs. 52.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
>> The tilt sensor is a component (switch) that can detect the orientation of an object (upright or not). It is equivalent to a pushbutton activated through its physical orientation.  It contains a metallic ball inside that will commute the two pins of the device from CLOSED to OPEN if the sensor exceeds a certain angle and viceversa. Only when the tilt sensor is in its upright position, metallic balls inside the tilt sensor bridges the two contacts, completing the circuit. When the sensor is tilted beyond the sensivity range, the contacts moves away, and thus opens the circuit.

    Features:
        -Detect orientation or inclination
        -Small and inexpensive
        -Low-power and easy-to-use
        -If used properly, they will not wear out.
        -Sensitivity range: > +-15 degrees
        -Lifetime: 50,000+ cycles (switches)
        -Power supply: Up to 24V, switching less than 5mA

SPECIFICATIONS:

  a meter :5.2mm

  Height :11.5mm (excluding leads)

OVERVIEW:

  -Detect orientation or inclination

  -Small and inexpensive

  -Low-power and easy-to-use

  -If used properly, they will not wear out. 

  -Sensitivity range: > +-15 degrees

  -Lifetime: 50,000+ cycles (switches)

  -Power supply: Up to 24V, switching less than 5mA

PACKAGE INCLUDES:

1 PCS x Sw 520D Tilt Sensor


//SOURCE CODE TAKEN FROM BELOW LINK

//https://www.electroschematics.com/arduino-tilt-sensor-experiment/

const int statusLED = 13;

const int switchTilt = 2;

int val = 0;

void setup(){

   pinMode (statusLED,OUTPUT);

   pinMode (switchTilt,INPUT);

}

void loop(){

   val = digitalRead(switchTilt);

   if (val == HIGH){

      digitalWrite(statusLED,HIGH);

   }

   else {

   digitalWrite(statusLED,LOW);

   }

}

15 days

Write a review

Please login or register to review