Tilt Sensor Module Black Color
৳ 180.00
The Arduino tilt switch sensor module. Closes the circuit when it is tilted to the side as long as it is moved with enough force and degree of inclination to activate the ball switch inside.
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 Voltage | 3.3V to 5v |
Output Type | Digital |
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 Sensor | Arduino |
S | 2 |
middle | +5V |
– | GND |

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);
}
Related Product

HELP: 0123110110
09.00am - 08.00pm (7 days a week)

PAY CASH ON DELIVERY
Pay cash at your doorstep

SERVICE
All over Bangladesh

WARRANTY AND REPLACEMENT
Up to 1 Year
Reviews
There are no reviews yet.