Laser sensor emitter-receiver PNP NO E3F-20B1 20 m
zoom_out_map
chevron_left chevron_right

Product images are for informational purposes only and may vary slightly depending on the batch and supplier. Product specifications and prices may be subject to change without notice. We do our best to provide accurate and complete product specifications, but they may not be completely accurate. If you encounter any such situation, please let us know.

The product is intended for specialists and requires qualified and authorized personnel. The product does not include assembly/use instructions . Putting the product into operation by unqualified persons leads to the loss of the warranty according to the Terms and Conditions on the site.

The specified technical parameters (current, power, etc.) represent maximum allowable values under ideal operating conditions. For safe use and optimal lifespan, it is recommended to operate the product continuously at no more than 50% of the specified maximum values.

Laser sensor, emitter-receiver, PNP NO, E3F-20B1, 6-36V, 20M

Laser emitter-receiver barrier for rapid detection by beam interruption, ideal for automation, gates, conveyor belts, and parts counting. It offers a PNP NO output for easy integration into PLCs, 6-36VDC power supply, working distance up to 20 m, and simple alignment thanks to the 3 mm beam and the status LED on the receiver.

Ft5,824.05 Tax included

Ft4,813.26 Tax excluded

No reviews yet
1-2 zile
check In Stoc

Shipping by Thursday 27 August

Close

This product has a warranty of 2 years.

INTERNATIONAL DELIVERY
International fast shipping within EU. Free Shipping for orders above 100 EUR in most EU countries.
FAST DISPATCH 24H
We ship from our stock within 24H
LOYALTY POINTS
You earn points with every order, worth 5%.

The laser barrier sensor set consists of a laser beam emitter module and a receiver module, supplied together with the nuts and washers required for mounting. Detection is performed by the occlusion method, meaning by interrupting the laser beam between the emitter and receiver, which allows the presence of an object to be detected practically at the speed of light. The two modules operate in a synchronized circuit to determine the presence or absence of the object, and detection is not limited to metal; any object that blocks the light can be identified.

The sensor is PNP type, and the receiver output is configured as NO (Normally Open), so the signal appears only when the beam is interrupted. Power supply is provided by a variable voltage between 6 and 36VDC, at a current of up to 200mA, which allows easy integration in industrial installations, automation systems, gates and barriers, conveyor belts, or part counting lines.

The construction uses quality components, with high detection sensitivity, operating stability, and remarkable durability. The housing is made of nickel-plated brass, and the diaphragm lens is made of wear- and scratch-resistant ABS material, offering a long service life. The infrared laser beam has a diameter of 3mm and ensures high precision of the detection point even at long distances, making alignment easy to achieve. The working distance between emitter and receiver can reach up to 20m, with a minimum distance of 0.3m.

The receiver is equipped with an inductive LED indicator that lights up when an object is detected, a useful feature both during commissioning and alignment of the two modules, as well as for quick troubleshooting of the installation. The connection cable has a length of 1.5m for each module, and the compact dimensions of 12 x 12 x 58mm allow installation in tight spaces, using the nuts and washers included in the package.

The sensor can be used together with Arduino, ESP32, STM32, Raspberry Pi boards or other compatible platforms, as well as directly with PLC programmable controllers that accept PNP inputs. Since the PNP output supplies the sensor supply voltage on the signal line, when connecting to a microcontroller operating at 3.3V or 5V, it is mandatory to use a resistor divider or a logic level converter to avoid damaging the input pin.

 

Specifications:

Operating voltage: DC 6-36V

Operating current: 100-200mA

Material: nickel-plated brass + ABS + electronic components

Operating frequency: 50Hz

Detection distance: 0.3-20m

Output type: PNP, NO (normally open)

Laser beam diameter: 3mm

Temperature range: -25 degrees Celsius to 75 degrees Celsius

Cable length: 1.5m

Product size: 12 x 12 x 58mm

 

Package contents:

1 x Laser beam transmitting part

1 x Laser beam receiving part

2 x Nuts and washers

 

Connection:

 

Pinout:

Wire Signal Description
Brown V+ Positive power supply 6–36 VDC
Blue GND Common power ground
Black (receiver) OUT PNP signal output, active on detection

 

Usage:

The laser emitter has only two wires, brown for V+ and blue for GND. The receiver has three wires, as shown in the image above.

Mount the emitter and receiver facing each other, on rigid supports, using the included nuts and washers.

Ensure a distance between modules of 0.3m to 20m and as good an alignment as possible on the optical axis.

Connect the brown wire of both modules to the positive terminal of the 6-36VDC power supply.

Connect the blue wire of both modules to the power supply ground.

Power up the assembly and verify alignment by blocking and releasing the beam, while observing the indicator LED on the receiver.

Connect the black wire of the receiver to the PNP input of the PLC or to the microcontroller input through a resistor divider or logic level converter, if needed.

If using a microcontroller, add a 10k pull-down resistor between the input pin and ground for a stable signal.

Clean the lenses of both modules periodically to maintain the maximum detection distance.

9698

Produs destinat utilizarii in proiecte electronice, automatizari, prototipare, educatie si cercetare.

Produsul trebuie utilizat numai conform specificatiilor tehnice mentionate in descriere si/sau in documentatia produsului.

Avertismente generale de siguranta:

Nu utilizati produsul la tensiuni, curenti sau temperaturi peste valorile specificate.

Montajul si conectarea trebuie realizate de persoane cu cunostinte tehnice minime in domeniul electric/electronic.

Evitati scurtcircuitele, inversarea polaritatii si conectarea gresita a alimentarii.

Nu lasati produsul alimentat nesupravegheat in timpul testelor.

Produsul nu este jucarie si nu este destinat copiilor.

Pentru modulele electronice, se recomanda utilizarea in carcase, panouri sau montaje protejate, dupa caz.

Identificare produs:

Denumirea produsului, codul/SKU-ul si caracteristicile tehnice sunt mentionate in pagina produsului si/sau pe eticheta ambalajului.

Producator / Importator / Distribuitor:

Sigmanortec S.R.L.

Calea Bucuresti nr. 9, Targu Jiu, Gorj, Romania

E-mail: [email protected]

Website: www.sigmanortec.ro

Persoana responsabila in UE:

Sigmanortec S.R.L.

Calea Bucuresti nr. 9, Targu Jiu, Gorj, Romania

E-mail: [email protected]

Documentatie si siguranta:

Pentru informatii suplimentare, fise tehnice, declaratii de conformitate sau instructiuni, ne puteti contacta la [email protected].

// Laser beam break sensor - PNP NO output

// Connect sensor OUT through a voltage divider or level shifter

// Divider example for 12V supply: 10k in series, 3.3k to GND -> about 3V on the pin

const int sensorPin = 2;      // digital input from sensor

const int ledPin = 13;        // onboard LED

int lastState = LOW;

unsigned long objectCount = 0;

void setup() {

  pinMode(sensorPin, INPUT);

  pinMode(ledPin, OUTPUT);

  Serial.begin(9600);

  Serial.println("Laser beam sensor ready");

}

void loop() {

  int state = digitalRead(sensorPin);

  // PNP NO output goes HIGH when an object breaks the beam

  if (state == HIGH && lastState == LOW) {

    objectCount++;

    digitalWrite(ledPin, HIGH);

    Serial.print("Object detected. Total count: ");

    Serial.println(objectCount);

  }

  if (state == LOW && lastState == HIGH) {

    digitalWrite(ledPin, LOW);

    Serial.println("Beam restored");

  }

  lastState = state;

  delay(20);   // simple debounce

}