Cirkit Designer Logo
Cirkit Designer
Your all-in-one circuit design IDE
Home / 
Component Documentation

How to Use Tilt de Mercurio: Examples, Pinouts, and Specs

Image of Tilt de Mercurio
Cirkit Designer LogoDesign with Tilt de Mercurio in Cirkit Designer

Introduction

The Tilt de Mercurio (manufacturer: Keys, part ID: Mercury) is a mercury tilt switch designed to open or close an electrical circuit based on its orientation. The device contains a small amount of mercury that moves within a sealed glass or metal tube. When tilted, the mercury bridges two electrical contacts, completing the circuit. This component is widely used in applications requiring level sensing, motion detection, or safety mechanisms.

Explore Projects Built with Tilt de Mercurio

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
Arduino-Controlled DC Motor with Dual IR Sensors and Tilt Detection
Image of נעם שפרונג תרגיל 2 CRIKITDESINER: A project utilizing Tilt de Mercurio in a practical application
This circuit uses an Arduino UNO to control a DC motor via an L298N motor driver based on input from two IR sensors and a tilt sensor. The IR sensors are used to detect objects or movement, and the tilt sensor detects the orientation of the device. The motor is activated only when the tilt sensor is triggered and one of the IR sensors detects an object, indicating a specific condition or orientation is met.
Cirkit Designer LogoOpen Project in Cirkit Designer
Arduino UNO and ADXL345-Based Digital Car Indicator System
Image of Digital Car Indicator using Accelerometer: A project utilizing Tilt de Mercurio in a practical application
This circuit uses an Arduino UNO and an ADXL345 accelerometer to control two LED indicators based on the tilt of a car. The accelerometer detects the car's tilt and the Arduino activates the corresponding LED: the left LED for left tilt and the right LED for right tilt.
Cirkit Designer LogoOpen Project in Cirkit Designer
Arduino-Based Tilt and Distance Measurement System with ADXL335 and Ultrasonic Sensor
Image of Digital goniometer: A project utilizing Tilt de Mercurio in a practical application
This circuit uses an Arduino UNO to read data from an ADXXL335 accelerometer and an ultrasonic sensor, calculating tilt angles and distances. The results are displayed on a 16x2 LCD, with a trimmer potentiometer used for adjusting the LCD contrast.
Cirkit Designer LogoOpen Project in Cirkit Designer
Arduino Uno R3 Controlled Pan-Tilt Security Camera with Night Vision
Image of MOTION CAMERA: A project utilizing Tilt de Mercurio in a practical application
This circuit features an Arduino Uno R3 microcontroller connected to a Huskylens (an AI camera module), an IR LED Night Vision Ring, and a Tilt Pan module. The Huskylens is interfaced with the Arduino via I2C communication using the SDA and SCL lines, while the Tilt Pan module is controlled by the Arduino through digital pins 10 and 11 for signal and output control. The IR LED ring and Tilt Pan are powered directly from the Arduino's 5V output, and all components share a common ground.
Cirkit Designer LogoOpen Project in Cirkit Designer

Explore Projects Built with Tilt de Mercurio

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
Image of נעם שפרונג תרגיל 2 CRIKITDESINER: A project utilizing Tilt de Mercurio in a practical application
Arduino-Controlled DC Motor with Dual IR Sensors and Tilt Detection
This circuit uses an Arduino UNO to control a DC motor via an L298N motor driver based on input from two IR sensors and a tilt sensor. The IR sensors are used to detect objects or movement, and the tilt sensor detects the orientation of the device. The motor is activated only when the tilt sensor is triggered and one of the IR sensors detects an object, indicating a specific condition or orientation is met.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of Digital Car Indicator using Accelerometer: A project utilizing Tilt de Mercurio in a practical application
Arduino UNO and ADXL345-Based Digital Car Indicator System
This circuit uses an Arduino UNO and an ADXL345 accelerometer to control two LED indicators based on the tilt of a car. The accelerometer detects the car's tilt and the Arduino activates the corresponding LED: the left LED for left tilt and the right LED for right tilt.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of Digital goniometer: A project utilizing Tilt de Mercurio in a practical application
Arduino-Based Tilt and Distance Measurement System with ADXL335 and Ultrasonic Sensor
This circuit uses an Arduino UNO to read data from an ADXXL335 accelerometer and an ultrasonic sensor, calculating tilt angles and distances. The results are displayed on a 16x2 LCD, with a trimmer potentiometer used for adjusting the LCD contrast.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of MOTION CAMERA: A project utilizing Tilt de Mercurio in a practical application
Arduino Uno R3 Controlled Pan-Tilt Security Camera with Night Vision
This circuit features an Arduino Uno R3 microcontroller connected to a Huskylens (an AI camera module), an IR LED Night Vision Ring, and a Tilt Pan module. The Huskylens is interfaced with the Arduino via I2C communication using the SDA and SCL lines, while the Tilt Pan module is controlled by the Arduino through digital pins 10 and 11 for signal and output control. The IR LED ring and Tilt Pan are powered directly from the Arduino's 5V output, and all components share a common ground.
Cirkit Designer LogoOpen Project in Cirkit Designer

Common Applications

  • Level sensing: Detecting the tilt or orientation of an object.
  • Safety switches: Automatically shutting off devices when tilted or overturned.
  • Motion detection: Triggering alarms or activating systems based on movement.
  • Industrial equipment: Monitoring the position of machinery or components.

Technical Specifications

The following table outlines the key technical details of the Tilt de Mercurio:

Parameter Value
Manufacturer Keys
Part ID Mercury
Operating Voltage 3V to 24V DC
Maximum Current 500 mA
Contact Resistance < 100 mΩ
Operating Temperature -40°C to +85°C
Housing Material Glass or metal (sealed)
Orientation Sensitivity Typically ±10° from horizontal

Pin Configuration and Descriptions

The Tilt de Mercurio has two pins, as described below:

Pin Description
Pin 1 Electrical contact 1 (connect to power or signal)
Pin 2 Electrical contact 2 (connect to ground or load)

Usage Instructions

How to Use the Component in a Circuit

  1. Basic Connection:

    • Connect Pin 1 to the positive terminal of the power supply or signal input.
    • Connect Pin 2 to the load or ground, depending on the circuit design.
    • When the switch is tilted to the appropriate angle, the mercury will complete the circuit, allowing current to flow.
  2. Example Circuit:

    • Use a resistor in series with the load to limit current and protect the switch.
    • For digital applications, connect the output to a microcontroller input pin to detect the tilt state.
  3. Arduino UNO Example: Below is an example of how to use the Tilt de Mercurio with an Arduino UNO to detect tilt and light up an LED:

    // Define the pin connected to the tilt switch
    const int tiltSwitchPin = 2; // Digital pin 2
    const int ledPin = 13;      // Built-in LED pin
    
    void setup() {
      pinMode(tiltSwitchPin, INPUT); // Set tilt switch pin as input
      pinMode(ledPin, OUTPUT);       // Set LED pin as output
      Serial.begin(9600);           // Initialize serial communication
    }
    
    void loop() {
      int tiltState = digitalRead(tiltSwitchPin); // Read the tilt switch state
    
      if (tiltState == HIGH) {
        // If the switch is tilted, turn on the LED
        digitalWrite(ledPin, HIGH);
        Serial.println("Tilt detected!");
      } else {
        // If not tilted, turn off the LED
        digitalWrite(ledPin, LOW);
        Serial.println("No tilt detected.");
      }
    
      delay(500); // Wait for 500ms before checking again
    }
    

Important Considerations and Best Practices

  • Orientation: Ensure the switch is mounted in the correct orientation for your application.
  • Vibration: Avoid excessive vibration, as it may cause false triggering.
  • Current Limiting: Use a resistor to limit current through the switch and prevent damage.
  • Environmental Conditions: Ensure the operating temperature and humidity are within the specified range to avoid malfunction.

Troubleshooting and FAQs

Common Issues and Solutions

  1. Issue: The switch does not respond to tilting.

    • Solution: Verify the orientation of the switch. Ensure it is mounted correctly and within the sensitivity range (±10° from horizontal).
  2. Issue: False triggering due to vibration or movement.

    • Solution: Use mechanical damping or mount the switch in a stable location to minimize vibration effects.
  3. Issue: The circuit does not complete when tilted.

    • Solution: Check the connections and ensure the pins are properly soldered or secured. Also, verify that the current and voltage are within the specified range.
  4. Issue: The switch is damaged or leaking mercury.

    • Solution: Immediately stop using the switch and dispose of it according to local hazardous material regulations. Replace it with a new component.

FAQs

  • Q: Can the Tilt de Mercurio be used in high-vibration environments?
    A: It is not recommended, as vibrations may cause false triggering. Consider using a solid-state tilt sensor for such applications.

  • Q: Is the mercury inside the switch hazardous?
    A: Yes, mercury is toxic. Handle the switch carefully and avoid breaking it. Dispose of damaged switches properly.

  • Q: Can this switch handle AC voltage?
    A: The Tilt de Mercurio is primarily designed for DC applications. If AC is required, ensure the voltage and current ratings are not exceeded.

  • Q: How do I clean the switch if it gets dirty?
    A: Avoid cleaning with water or solvents. Use a dry, soft cloth to gently clean the exterior.

This concludes the documentation for the Tilt de Mercurio. For further assistance, refer to the manufacturer's datasheet or contact Keys support.