

The EE-SY310 Reflective Opto Sensor by Omron is a compact and versatile sensor designed for the detection of objects through the reflection of light. It integrates an infrared light emitter and a phototransistor detector, making it ideal for applications such as object presence sensing, position control, and rotational speed detection. This sensor is commonly used in industrial automation, robotics, and various consumer electronics.








| Pin Number | Description | Notes |
|---|---|---|
| 1 | Emitter (Anode) | Connect to VCC with a resistor |
| 2 | Emitter (Cathode) | Connect to GND |
| 3 | Collector | Output signal (active low) |
| 4 | Emitter | No connection (NC) |
To use the EE-SY310 in a circuit, follow these steps:
// Define the pin connected to the collector of the opto sensor
const int optoSensorPin = 2;
void setup() {
// Configure the opto sensor pin as an input
pinMode(optoSensorPin, INPUT);
// Initialize serial communication at 9600 bits per second
Serial.begin(9600);
}
void loop() {
// Read the state of the opto sensor
int sensorValue = digitalRead(optoSensorPin);
// Print out the value to the serial monitor
Serial.println(sensorValue);
// Delay for a bit to avoid spamming the serial monitor
delay(100);
}
Q: Can the EE-SY310 be used with a 3.3V system? A: While the EE-SY310 is rated for 5V, it may work at 3.3V with reduced performance. However, it is recommended to use a level shifter for proper operation.
Q: What is the maximum sensing distance of the EE-SY310? A: The maximum recommended sensing distance is 5 mm, but this can vary depending on the object's reflectivity and ambient light conditions.
Q: How can I adjust the sensitivity of the sensor? A: Sensitivity can be adjusted by changing the distance between the sensor and the object or by using a variable resistor in the emitter circuit to adjust the light intensity.
For further assistance, please contact Omron's technical support or refer to the detailed datasheet of the EE-SY310 Reflective Opto Sensor.