

The Siemens 3RH2262-1BB40 Control Relay is an electromechanical switch designed to control circuits using a low-power signal. It is widely used in industrial automation, motor control, and other applications where multiple circuits need to be controlled with a single input signal. The relay consists of a coil, an armature, and contacts that open or close when the coil is energized, enabling efficient and reliable switching.








Below are the key technical details of the Siemens 3RH2262-1BB40 Control Relay:
| Parameter | Value | 
|---|---|
| Manufacturer | Siemens | 
| Part Number | 3RH2262-1BB40 | 
| Type | Control Relay | 
| Coil Voltage | 24 V DC | 
| Contact Configuration | 2 NO (Normally Open) + 2 NC (Normally Closed) | 
| Rated Current (Contacts) | 10 A | 
| Operating Temperature | -25°C to +60°C | 
| Mounting Type | DIN Rail | 
| Dimensions (L x W x H) | 45 mm x 75 mm x 90 mm | 
| Weight | 0.2 kg | 
The relay has a total of 8 pins, which are configured as follows:
| Pin Number | Description | 
|---|---|
| 1 | Coil Positive Terminal (+) | 
| 2 | Coil Negative Terminal (-) | 
| 3 | Normally Open (NO) Contact 1 Input | 
| 4 | Normally Open (NO) Contact 1 Output | 
| 5 | Normally Closed (NC) Contact 1 Input | 
| 6 | Normally Closed (NC) Contact 1 Output | 
| 7 | Normally Open (NO) Contact 2 Input | 
| 8 | Normally Open (NO) Contact 2 Output | 
The Siemens 3RH2262-1BB40 can be controlled using an Arduino UNO. Below is an example circuit and code:
// Define the relay control pin
const int relayPin = 7;
void setup() {
  // Set the relay pin as an output
  pinMode(relayPin, OUTPUT);
  // Initialize the relay in the OFF state
  digitalWrite(relayPin, LOW);
}
void loop() {
  // Turn the relay ON
  digitalWrite(relayPin, HIGH);
  delay(5000); // Keep the relay ON for 5 seconds
  // Turn the relay OFF
  digitalWrite(relayPin, LOW);
  delay(5000); // Keep the relay OFF for 5 seconds
}
Relay Not Switching:
Contacts Not Closing or Opening:
Arduino Not Controlling the Relay:
Excessive Heat:
Q1: Can I use this relay with an AC coil voltage?
A1: No, the Siemens 3RH2262-1BB40 is designed for a 24 V DC coil voltage only.
Q2: What is the maximum switching frequency of this relay?
A2: The maximum switching frequency is approximately 10 Hz under normal operating conditions.
Q3: Can I use this relay to switch high-power motors?
A3: Yes, but ensure the motor's starting current does not exceed the relay's rated current of 10 A. Use a contactor for higher currents.
Q4: Is the relay suitable for outdoor use?
A4: No, the relay is not weatherproof and should be used in a dry, indoor environment.