Inductive proximity sensor, PNP, NO, LJA18M-10P1, 6-36V
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.

Inductive proximity sensor, PNP, NO, LJA18M-10P1, 6-36V

Inductive proximity sensor for non-contact detection of metal objects, ideal for industrial automation and DIY projects. Non-flush M18 mounting with a 10 mm detection distance, 6-36 VDC supply, and PNP NO output compatible with PLCs and microcontrollers. Rugged IP67 housing with status LED and integrated 2 m cable for quick connection.

55.08 RON Tax included

45.52 RON 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%.

Inductive sensor from the LJA series designed for contactless detection of metal objects. The cylindrical body with a diameter of 18mm (M18) allows quick mounting in various industrial applications or DIY projects. The LJA18M-10P1 variant features a detection distance of 10 mm, PNP output, normally open (NO), operates at a supply voltage range of 6-36 VDC, and comes with a 2-meter integrated cable with 3 wires. The sensor is of the non-flush (non-embedded) type.

The status LED indicates the presence of an object within the detection range, and the integrated protections (short circuit, reverse polarity) ensure safe operation in industrial environments.

Specifications:

Body diameter: 18 mm (M18)

Mounting type: Non-flush (non-embedded)

Supply voltage: 6 - 36 VDC

Current consumption: ≤ 15 mA (no load)

Output current: ≤ 300 mA

Standard detection distance: 10 mm

Response frequency: 0.2 KHz

Output type: PNP, NO (normally open)

Protections: Short circuit, reverse polarity

Operating temperature: -25 ~ 65°C

Protection rating: IP67

Cable: 3 wires, 2 m length, PVC insulation

Housing material: Nickel-plated brass

Sensing surface: ABS

Pinout:

Wire color Signal Description
Brown VCC Positive supply (6-36V DC)
Blue GND Ground
Black OUT PNP output

Usage:

Install the sensor on an M18-compatible mount, ensuring a clear distance from other metal objects that could interfere with detection.

Connect the brown wire to the power source (6-36 VDC), the blue wire to ground, and the black wire to the controller input (PLC, Arduino, relay, etc.).

For stable operation, it is recommended that the working distance be set to a maximum of 70% of the standard detection distance. The standard detection distance (10 mm) applies to iron. For other metals, the effective distance is calculated by multiplying the standard detection distance by the corresponding correction coefficient:

Steel: ~0.9

Brass: ~0.7

Chrome-nickel: ~0.6

Aluminum: ~0.4

In the absence of a metal object in front of the sensor, the output is OFF (zero voltage). When a metal object enters the detection range, the output switches to the supply voltage (positive), activating the connected load. The built-in LED lights up simultaneously.

Attention!

Do not exceed the maximum output current of 300 mA; for large loads (gear motors, bulbs, etc.), use an intermediate relay.

In applications with strong interference, install an overvoltage protection device.

Do not use the sensor within the first 100 ms after powering on, as this is the stabilization period.

88203

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].

// LJA18M-10P1 Inductive Sensor Test - Arduino

// PNP NO output connected to digital pin 2

// Pull-down resistor (10k) required between pin 2 and GND

const int sensorPin = 2;

const int ledPin = 13;

void setup() {

  pinMode(sensorPin, INPUT);

  pinMode(ledPin, OUTPUT);

  Serial.begin(9600);

  Serial.println("LJA18M-10P1 Inductive Sensor Test");

  delay(200); // wait for sensor stabilization (min 100ms after power-up)

}

void loop() {

  int sensorState = digitalRead(sensorPin);

  if (sensorState == HIGH) {

    digitalWrite(ledPin, HIGH);

    Serial.println("Metal object detected!");

  } else {

    digitalWrite(ledPin, LOW);

    Serial.println("No object detected.");

  }

  delay(100);

}

You might also like