RBS-1F-R
AI

The **RBS-1F-R** is a specific electronic component manufactured by **Nidec Components (formerly Copal Electronics)**. It belongs to the RBS series of **Recoil-Base Tilt Sensors**. These sensors are designed to detect orientation or movement through a non-mercury based mechanism.
---
### 1. General Specifications
The RBS-1F-R is a surface-mount (SMD) device. Below are the primary technical characteristics:
| Feature | Specification |
| :--- | :--- |
| **Type** | Tilt Sensor (Non-contact/Photo-interrupter) |
| **Mounting Type** | Surface Mount (SMD) |
| **Operating Angle** | ±10° to ±45° (Depending on axis) |
| **Output Type** | Digital (High/Low) |
| **Max Current** | 20mA |
| **Operating Temp** | -25°C to +80°C |
---
### 2. Internal Mechanism and Working Principle
Unlike older tilt switches that used liquid mercury, the RBS-1F-R utilizes an **Optical (Photo-interrupter)** system.
* **Infrared LED:** Acts as the light source.
* **Photo-transistor:** Acts as the detector.
* **The Ball:** A small, metallic ball sits inside a cavity. When the device is tilted, the ball moves, either blocking or unblocking the infrared light path between the LED and the photo-transistor.
* **Logic:**
* **Horizontal:** The ball blocks the light (Output is OFF).
* **Tilted:** The ball rolls away, allowing light to reach the transistor (Output is ON).
---
### 3. Key Electronic Benefits
1. **Environmentally Friendly:** Being "Mercury-free" makes it compliant with modern RoHS regulations.
2. **Chipping Resistance:** The "R" in the part number usually refers to the packaging or a specific revision geared toward improved soldering reliability.
3. **High Reliability:** Since it uses an optical sensor rather than a mechanical contact switch, there is no "contact bounce" or oxidation of metal pins over time.
---
### 4. Typical Application Circuit
The sensor is treated like a standard photo-interrupter. You must use a current-limiting resistor for the LED and a pull-up/pull-down resistor for the transistor output.
```cpp
// Example: Basic Logic for Microcontroller
if (digitalRead(TILT_PIN) == HIGH) {
// Device is tilted beyond the threshold
triggerAlarm();
}
```
---
### 5. Common Use Cases
* **Screen Rotation:** Detecting if a handheld device is in portrait or landscape mode.
* **Safety Cut-off:** Turning off heaters or irons if they tip over to prevent fires.
* **Anti-theft:** Detecting if a stationary object (like a vending machine) is being moved or tampered with.
- ⤷
What are the specific soldering temperature requirements for the RBS-1F-R?
- ⤷ How does the sensitivity of this optical sensor compare to a ball-contact tilt switch?
- ⤷ What is the typical power consumption of the internal LED?