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.
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 |
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) |
Basic Connection:
Example Circuit:
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
}
Issue: The switch does not respond to tilting.
Issue: False triggering due to vibration or movement.
Issue: The circuit does not complete when tilted.
Issue: The switch is damaged or leaking mercury.
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.