EE-1010-R2M
AI

The **EE-1010-R2M** is a specialized connector cable assembly designed specifically for use with Omron's line of **Photomicrosensors** (optical switches). It serves as the bridge between the sensor and the control system (like a PLC or microcontroller).
---
### 1. Key Technical Specifications
The following table outlines the core electronic and physical attributes of the EE-1010-R2M:
| Feature | Specification |
| :--- | :--- |
| **Component Type** | Connector with Cable |
| **Compatible Sensors** | Omron EE-SX Series (e.g., EE-SX67 series) |
| **Cable Length** | 2 Meters (Standard) |
| **Wire Configuration** | 4-wire (Brown, Blue, Black, White) |
| **Connector Type** | Dedicated Omron Snap-on |
| **Material** | Polyvinyl Chloride (PVC) Jacket |
---
### 2. Wiring Configuration (Pinout)
The EE-1010-R2M follows a standard industrial color code to allow for various output modes (Dark-ON vs. Light-ON).
| Wire Color | Function | Description |
| :--- | :--- | :--- |
| **Brown** | $+\text{V}_{CC}$ | Positive Power Supply (typically 5-24V DC) |
| **Blue** | $0V$ / GND | Negative Power Supply / Ground |
| **Black** | Output 1 | Main Switching Output |
| **White** | Output 2 / Control | Typically used for Mode Selection (L/D) |
---
### 3. Electronic Characteristics
* **Secure Connection:** The connector features a locking mechanism that ensures the electrical contact remains stable even in high-vibration industrial environments.
* **Voltage Rating:** While the cable itself is passive, it is rated to handle the typical operating voltages of optical sensors, usually up to **24V DC**.
* **Application:** It is primarily used in **NPN or PNP** transistor output circuits. By connecting the White wire to the Brown or Blue wire, the user can toggle between "Light-ON" (output active when light is received) and "Dark-ON" (output active when the beam is broken).
---
### 4. Usage Example
When connecting the EE-1010-R2M to an Arduino or PLC, use the following logic:
```cpp
// Example: Reading a sensor using the Black wire (Output)
const int sensorPin = 2; // Connected to Black Wire
void setup() {
pinMode(sensorPin, INPUT_PULLUP);
Serial.begin(9600);
}
void loop() {
int sensorState = digitalRead(sensorPin);
if (sensorState == LOW) {
Serial.println("Object Detected");
}
}
```
- ⤷
Which specific Omron sensor models are compatible with the EE-1010-R2M?
- ⤷ How do I wire the white wire to change between Light-ON and Dark-ON modes?
- ⤷ Is there a shorter cable version available for this connector?