Ks0025 keyestudio Digital Tilt Sensor

From Keyestudio Wiki
Revision as of 13:42, 15 November 2017 by Keyestudio (talk | contribs)
Jump to navigation Jump to search

Introduction

Tilt Sensor is a digital tilt switch,which can be used as a simple tilt sensor. Simply plug it to our IO/Sensor shield, it can be used to make amazing interactive projects. With dedicated sensor shield and Arduino, you can achieve interesting and interactive work.
thumb

Specification

  • Supply Voltage: 3.3V to 5V
  • Interface: Digital
  • Size: 30*20mm
  • Weight: 3g

Connection Diagram


thumb

Sample Code

int ledPin = 13;                // Connect LED to pin 13
int switcher = 3;                 // Connect Tilt sensor to Pin3
 
void setup()
{
  pinMode(ledPin, OUTPUT);      // Set digital pin 13 to output mode
  pinMode(switcher, INPUT);       // Set digital pin 3 to input mode
}
void loop()
{
     
   if(digitalRead(switcher)==HIGH) //Read sensor value
     { 
        digitalWrite(ledPin, HIGH);   // Turn on LED when the sensor is tilted
     }
   else
     {
        digitalWrite(ledPin, LOW);    // Turn off LED when the sensor is not triggered
}

Test


thumb

Resources

Video

http://www.keyestudio.com/wp/2016/05/ks0025-keyestudio-digital-tilt-sensor/

PDF

https://drive.google.com/open?id=1Jh2n_0j4kI9847SeZXDK1xfWuhPjF3dn

Buy from

Official Website

http://www.keyestudio.com/keyestudio-digital-tilt-sensor.html

Amazon Store

https://www.amazon.com/Keyestudio-Digital-Sensor-Arduino-raspberry/dp/B0171PTELM/ref=sr_1_1?ie=UTF8&qid=1479871047&sr=8-1&keywords=keyestudio+Digital+Tilt+Sensor