Skip to main content

Arduino and Standard Tilt Sensor

HELLO THERE!!!


            How are you, guys? I hope everyone is fine and in good condition always. So, as I said from the previous post, I will share with you guys on my experiments on the standard tilt sensor (some would prefer to call it as tilt switch). The sensor/switch that I am going to use is shown in the image below:
The Standard tilt sensor/switch
   The tilt sensor shown has only two pins. One of the pins will be wired to ground while the other would be connected to input pin and 5V.

Working Procedure of the Tilt Sensor:

   Similar to the mercury tilt sensor, this tilt sensor has metallic balls in it. The metallic balls functions as a switch where the if tilted the ball will move from "off" to "on" position and vice versa. It can be said that this tilt sensor is a eco-friendly version of the mercury tilt sensor.


On The Arduino

HARDWARE NEEDED:

1.ARDUINO UNO( You can also use other Arduino Variants)
2.Resistors (you can use a variety of values to see what is the effect: I used around 1K ohms)
 3. Tilt Sensor
Connecting to the Arduino:

  This tilt sensor only have two pins to be connected to the Arduino, therefore the connection for the sensor is shown below:





Make sure the connection is right. You will have the opportunity on testing on different values of resistors here.

Coding the Arduino:


int tilt =7;// tilt sensor at digital pin 7
int led = 13;//initialize the built-in led in pin 13
int val;//an empty value to store variable

void setup() {
Serial.begin(9600);//bps(baud rate per second) at 9600bps

pinMode(led,OUTPUT);//initialize the built in led as output

}

void loop() {
val=digitalRead(tilt);//store the sensor value that is read at pin 7 in variable val
if(val==HIGH)//if the value stored is high
{

  Serial.println("sensor Tilted");//print a line with sensor tilted
  digitalWrite(led,LOW);//turn off the led and vice versa
  
}

if(val==LOW)
{

  Serial.println("sensor not tilted");
  digitalWrite(led,HIGH);
  
}

}


 This is the same piece of code we used last week, you can also use another code I found here at instructables: http://www.instructables.com/id/Tilt-Sensor-Tutorial/


Sample Output:

 I am able to receive similar output as when I use the mercury tilt sensor. However, there are one difference, I found out that the standard tilt sensor is much more accurate if compared to its mercury counterpart. Sample output is shown below:




Well, that's all from me guys. I hope to see you guys in the next post. Till then, HAPPY TINKERING!!!




Comments

Popular posts from this blog

Arduino and Multi Function Shield: Pots,LEDs and buzzers

HELLO THERE!!!!!    How are you guys? I hope everyone is fine and in good mood always. This week, I continue my tinkerings with the Multi Function Shield. In this experiment, I used the potentiometer in the shield to control the LEDs in the shield. Without further wasting time, let's jump in straight to the experiment!! HARDWARE 1.ARDUINO UNO  2.MULTI-FUNCTION SHIELD SOFTWARE: 1. ARDUINO IDE CIRCUIT ASSEMBLY    The circuit assembly is fairly simple. Just attach the multi function shield on top of Arduino properly. Please attach the shield properly as failure to do so would cause the shield  not to function as intended. CODING THE ARDUINO: Let's refer to the multi-function shield image below: Referring to the image of the shield, it can be seen that the potentiometer (blue object near buttons) is connected to pin A0 (analog 0)     int pot = A0; //declaring the pot ...

Arduino and Keyes KY-017 Mercury Tilt Sensor

HELLO THERE!!!     How are you guys? I hope everyone is fine and good as always. I am back in tinkering after a few months of hiatus( busy stuff :) ). So, today i would like to share with you guys on KY-017, which is a Keyes Mercury Tilt Sensor. KY-017 Sensor KY-017      The picture above shows the KY-017 Sensor from Keyes. It has 3 pins, A ground, A vcc, and A signal pin. If you look closely, there is a mercury ball inside the bulb like object. The mercury ball acts like a switch for this sensor. KY-017 Working Procedure: 1. When the sensor is not tilted, the mercury ball will be at the bottom of the bulb. This will complete the circuit and turns on the LED of the sensor. The output that is sent through the signal pin will be LOW. 2.When the sensor is tilted, the mercury ball will be at the top of the bulb(near at the sharper end). This will complete break circuit and turns off the LED of the sensor. The output that is sent through t...

Mixing Color with RGB LED!!

HELLO THERE!!!     Hi everybody!! How are you guys? This week, I am going to share with you guys a fun experiment that I did during the weekends. The objective of this experiment is to use the RGB LED to output different colors. Without wasting further time, let's get into the experiment!! HARDWARE: 1.Arduino UNO 2. 3 Potentiometer 3. RGB LED ( I used the Keyes RGB LED) SOFTWARE: 1.Arduino IDE CIRCUIT ASSEMBLY:   By referring to the image below: The RGB LED has 4 pins, 1 GND, 1 pin each for the color red, green and blue. RGB LED                      ----------> ARDUINO  GND(- sign of the pin)                  GND R,G,B                                              Any Digital pin(I used pin 9,10 and 11) T...