Inductive Proximity Sensor Switch NPN DC 6V-36V LJ12A3-4-Z/BX COM33 ,R14

Fr6,500

LJ12A3-4-Z/BX Inductive Proximity Sensor Switch NPN NO DC 6V-36V is a component widely used in the automatic control industry for detecting, controlling, and non-contact switching. When the proximity switch is close to some target object, it will send out a control signal.

In stock

SKU: SEN11928 Category:

Description

When the metal approaches near-proximity switch sensing area, and Eady Current is induced in metal. Which in turn disturbs the magnetic field produced by the Inductive Proximity Sensor. This change is sensed by the sensor.

This inductive proximity switches can be non-contact, no pressure, no spark, quickly issued the electrical command. Accurately reflect the position and stroke movement mechanism. Positioning accuracy, operating frequency, service life. Easy to install and suitable for harsh environments.

This 8mm proximity sensor can detect a variety of metals, miniature size, long life, shielded type installation, anti-interference ability, 1mm detection distance, used for precise positioning of molds, precision machine tools, and robots.

Specification

Operating Voltage DC 6-36V range within Universal
Output Type NPN Normally Open Three-line
Detection object Metal Objects
Detection distance (mm) 1 – 10
Output Current 300 mA
Working temperature (°C) -25 ~ +70, ±15%
Cable Length Approx 1.1 m
Material Metal and plastic
Dimensions 17 mm Screw Diameter
Weight 70 gm

Features :

  1. Red LED checks the state of the proximity sensor.
  2. High repeated positioning accuracy.
  3. High switching frequency.
  4. Wide voltage range.
  5. Outer (Theard) Diameter: M17.
  6. Antivibration, dust, water and oil prevention.
  7. Reverse power protection, short circuit protection, directly connecting with PLC.
  8. It can replace small switches and limit switches.

Getting started with the Inductive Proximity Sensor Switch NPN DC 6V-36V

In this project you’re going to create a simple circuit with an Arduino and  Inductive proximity sensor that can detect target object. An LED will light up when object is detected.

Hardware required

  • Arduino Uno
  • Inductive proximity sensor
  • Jumper wires

 Connecting the Hardware

The metal proximity sensor will have three color wire. The blue should be in the ground, Black– Trigger Signal is on pin 2, brown is on +VCC which should be +6v  to +36V. Assemble all the parts by following the schematics below.

Upload the sample sketch

const int Pin=2;//connect sensor data wire to D2 of Arduino

void setup() {
pinMode(Pin, INPUT);
Serial.begin(9600);
}

void loop() {
int sensorValue = digitalRead(Pin);
if(sensorValue!=LOW){
Serial.println(“NOT DETECTED”);
delay(500);
}
else{
Serial.println(“DETECTED”);
delay(500);
}

Testing the circuit

In this example you need to open your serial monitor to see the incoming signal from the digital pin then make a threshold to determine if metal is detected or not.