The LJ18A3-H-ZBX Inductive Proximity Sensor is a robust and reliable non-contact sensor designed to detect the presence or absence of metal objects. Utilizing changes in inductance near its sensing head, this sensor is commonly employed in industrial automation, robotics, and various applications where precise metal object detection is required.
Parameter | Specification |
---|---|
Supply Voltage | 6 to 36 VDC |
Output Type | NPN |
Detection Distance | 8mm |
Output Current | 300 mA (max) |
Operating Temperature | -25°C to +70°C |
Frequency | 500 Hz |
Material | Nickel-plated brass |
IP Rating | IP67 |
Pin Number | Description |
---|---|
1 | Brown - V+ (Power) |
2 | Blue - 0V (Ground) |
3 | Black - Output Signal |
To connect the LJ18A3-H-ZBX to an Arduino UNO, follow these steps:
// Define the sensor pin
const int sensorPin = 2;
// Variable to store the sensor status
int sensorState = 0;
void setup() {
// Initialize the sensor pin as an input
pinMode(sensorPin, INPUT);
// Begin serial communication at 9600 baud rate
Serial.begin(9600);
}
void loop() {
// Read the state of the sensor
sensorState = digitalRead(sensorPin);
// Print the sensor state to the Serial Monitor
Serial.println(sensorState);
// A short delay before the next reading
delay(100);
}
Q: Can the sensor detect non-metallic objects? A: No, the LJ18A3-H-ZBX is designed to detect metal objects only.
Q: What is the maximum operating distance of the sensor? A: The maximum recommended operating distance is 8mm from the face of the sensor.
Q: Is the sensor waterproof? A: The sensor has an IP67 rating, making it dust-tight and capable of withstanding temporary immersion in water.
Q: Can I use this sensor with a 24V system? A: Yes, the sensor can operate with a supply voltage between 6 and 36 VDC, which includes 24V systems.