আসসালামু আলাইকুম, EEE Tech BD তে আপনাকে স্বাগতম। EEE Tech Bd  এখন নতুন ব্র্যান্ড নিয়ে আসছে (H.MCorporation Bd) বিস্তারিত জানতে চোখ রাখুন আমাদের ফেসবুক পেজে *** অর্ডার করার পূর্বে কাস্টমার কেয়ার থেকে পণ্যের স্টক ও ডেলিভারী সম্পর্কে জেনে নেয়ার জন্য অনুরোধ করা যাচ্ছে। *** আপনাদের সহযোগীতা আমাদের একান্ত কাম্য। আমাদের ডেলিভারি চার্জ ,ঢাকার মধ্যে ৮০ টাকা, ও ঢাকার বাহিরে ১৫০ টাকা। ডেলিভারি সময় ঢাকার মধ্যে ১২ থেকে ২৪ ঘন্টা, ও ঢাকার বাহিরে ২৪ থেকে ৪৮ ঘন্টা সময় নিয়ে থাকি। ধন্যবাদ EEE Tech BD (H.M Corporation Bd) এর সাথে থাকার জন্য

Categories (See All)

Black Color Tilt Sensor Module


Price
৳150 /Pcs
Quantity
(In stock)
Total Price
Share

Specifications:

The Tilt Sensor consists of a 10kΩ resistor and a metallic ball switch with bidirectional conduction that will open/close the circuit depending on its tilt degree. It does not measure tilt angle.

Operating Voltage3.3V to 5v
Output TypeDigital

Connection Diagram:

Connect the module's Power line (middle) and ground (-) to +5 and GND respectively. Connect signal (S) to pin 2 on the Arduino.

Tilt SensorArduino
S2
middle+5V
-GND
KY-020 Tilt switch connection diagramclick to enlarge

Example Code:

The following sketch will turn on the LED on pin 13 of the Arduino when the module detects a change in inclination degree. The Tilt to turn the LED on/off.

int tiltPin = 2;      // pin number for tilt switch signal 
int ledPin =  13;     // pin number of LED 
int tiltState = 0;    // variable for reading the tilt switch status

void setup() {  
  pinMode(ledPin, OUTPUT);  // set the LED pin as output      
  pinMode(tiltPin, INPUT);  // set the tilt switch pin as input
}

void loop(){
  // get the tilt switch state
  tiltState = digitalRead(tiltPin);

  // check if tilt switch is tilted.
  if (tiltState == HIGH) {     
    digitalWrite(ledPin, HIGH);  
  } 
  else {
    digitalWrite(ledPin, LOW); 
  }
}

Frequently Bought Products