The tilt sensor is a component that can detect the tilting of an object. However it is only the equivalent to a pushbutton activated through a different physical mechanism. This type of sensor is the environmental-friendly version of a mercury-switch. It contains a metallic ball inside that will commute the two pins of the device from on to off and vice-versa if the sensor reaches a certain angle.
The code example is exactly as the one we would use for a pushbutton but substituting this one with the tilt sensor. We use a pull-up resistor (thus use active-low to activate the pins) and connect the sensor to a digital input pin that we will read when needed.
The prototyping board has been populated with a 1K resistor to make the pull-up and the sensor itself. We have chosen the tilt sensor from Assemtech, which datasheet can be found here. The hardware was mounted and photographed by Anders Gran, the software comes from the basic Arduino examples.
1/* Tilt Sensor2 * -----------3 *4 * Detects if the sensor has been tilted or not and5 * lights up the LED if so. Note that due to the6 * use of active low inputs (through a pull-up resistor)7 * the input is at low when the sensor is active.8 *9 * (cleft) David Cuartielles for DojoCorp and K310 * @author: D. Cuartielles11 *12 */13
14int ledPin = 13;15int inPin = 7; 16int value = 0;17
18void setup() 19{20 pinMode(ledPin, OUTPUT); // initializes digital pin 13 as output21 pinMode(inPin, INPUT); // initializes digital pin 7 as input22}23
24void loop() 25{26 value = digitalRead(inPin); // reads the value at a digital input 27 digitalWrite(ledPin, value); 28}