Ks0025 keyestudio Digital Tilt Sensor: Difference between revisions

From Keyestudio Wiki
Jump to navigation Jump to search
No edit summary
 
(10 intermediate revisions by the same user not shown)
Line 1: Line 1:
<br>
==Introduction==
==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.
Tilt sensor is a digital tilt switch. It can be used as a simple tilt sensor.  
Tilt sensors (tilt ball switch) allow you to detect orientation or inclination. They are small, inexpensive, low-power and easy-to-use. <br>
Simply connect the sensor to our IO/Sensor shield, so you can make amazing interactive projects.  
<br>[[File:KS0025 (3).jpg|500px|frameless|thumb]]<br>
<br>[[File:KS0025 (3).jpg|500px|frameless|thumb]]<br>
<br>


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


<br>
==Connection Diagram ==
==Connection Diagram ==
<br>[[File:Ks0025.png|700px|frameless|thumb]]<br>


<br>[[File:252.png|500px|frameless|thumb]]<br>  
<br>


==Sample Code ==
==Sample Code ==


<pre>
<pre>
Line 35: Line 40:
     {
     {
        digitalWrite(ledPin, LOW);    // Turn off LED when the sensor is not triggered
        digitalWrite(ledPin, LOW);    // Turn off LED when the sensor is not triggered
}</pre>
     }
}
</pre>
 
<br>
== Result ==
Upload the code to the board. Then tilt the sensor, you will see the led on the sensor is turned on. Shown as below.
<br>[[File:KS0349 14-3.png|800px|frameless|thumb]]<br>
 
<br>


== Test ==
== Think ==
Or you can connect more an external LED module, then how to program? Think about it. The LED will turn on when tilt the sensor, and the LED will turn off when the sensor is not tilted.<br>
For example:
<br>[[File:KS0025 (6).jpg|500px|frameless|thumb]]<br>
<br>[[File:KS0025 (6).jpg|500px|frameless|thumb]]<br>


<br>
==Resources ==
==Resources ==


'''Video'''
* '''Video'''<br>
http://video.keyestudio.com/ks0025/
 
* '''PDF and Code'''<br>


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


'''PDF'''


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


==Buy from ==
==Buy from ==
'''Official Website'''


http://www.keyestudio.com/keyestudio-digital-tilt-sensor.html
*[https://www.keyestudio.com/free-shipping-keyestudio-digital-tilt-motion-sensor-module-for-arduino-p0160.html   '''Official Website''']


'''Amazon Store'''
*[https://www.aliexpress.com/store/product/Free-shipping-Keyestudio-Digital-Tilt-Motion-Sensor-module-for-arduino-uno-r3/4247007_32887892991.html?spm=2114.12010615.8148356.7.c8ba2fe8QUY3yq  '''Shop on aliexpress''']


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


[[Category: Sensor]]
[[Category: Sensor]]

Latest revision as of 14:46, 7 January 2021


Introduction

Tilt sensor is a digital tilt switch. It can be used as a simple tilt sensor. Tilt sensors (tilt ball switch) allow you to detect orientation or inclination. They are small, inexpensive, low-power and easy-to-use.
Simply connect the sensor to our IO/Sensor shield, so you can make amazing interactive projects.
thumb


Specification

  • Supply Voltage: 3.3V to 5V
  • Interface: Digital


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
     }
}


Result

Upload the code to the board. Then tilt the sensor, you will see the led on the sensor is turned on. Shown as below.
thumb


Think

Or you can connect more an external LED module, then how to program? Think about it. The LED will turn on when tilt the sensor, and the LED will turn off when the sensor is not tilted.
For example:
thumb


Resources

  • Video

http://video.keyestudio.com/ks0025/

  • PDF and Code

https://fs.keyestudio.com/KS0025



Buy from