The Thermometrics ZTP135SR is a thermopile infrared (IR) sensor designed to detect infrared radiation and convert it into an electrical signal. This enables non-contact temperature measurement and presence detection. The sensor is highly sensitive to infrared radiation, making it ideal for applications requiring accurate temperature readings without physical contact.
The following table outlines the key technical details of the ZTP135SR thermopile IR sensor:
Parameter | Value |
---|---|
Manufacturer | Thermometrics |
Part Number | ZTP135SR |
Operating Voltage | 2.7V to 5.5V |
Output Signal | Analog voltage proportional to IR |
Spectral Response Range | 2 µm to 22 µm |
Field of View (FOV) | 90° |
Operating Temperature Range | -10°C to +85°C |
Storage Temperature Range | -20°C to +100°C |
Package Type | TO-46 |
The ZTP135SR has a simple pinout configuration, as shown below:
Pin Number | Pin Name | Description |
---|---|---|
1 | VDD | Power supply input (2.7V to 5.5V) |
2 | OUT | Analog output signal proportional to IR radiation |
3 | GND | Ground connection |
Below is an example of how to connect and read data from the ZTP135SR using an Arduino UNO:
// Thermopile IR Sensor (ZTP135SR) Example Code
// Reads the analog output from the sensor and converts it to a voltage value.
const int sensorPin = A0; // Analog pin connected to the OUT pin of ZTP135SR
void setup() {
Serial.begin(9600); // Initialize serial communication at 9600 baud
pinMode(sensorPin, INPUT); // Set the sensor pin as input
}
void loop() {
int sensorValue = analogRead(sensorPin); // Read the analog value from the sensor
float voltage = sensorValue * (5.0 / 1023.0); // Convert to voltage (5V reference)
// Print the voltage value to the Serial Monitor
Serial.print("Sensor Voltage: ");
Serial.print(voltage);
Serial.println(" V");
delay(500); // Wait for 500ms before the next reading
}
No Output Signal
Inaccurate Temperature Readings
Noisy Output Signal
Sensor Overheating
Q1: Can the ZTP135SR detect human presence?
A1: Yes, the ZTP135SR can detect human presence by sensing the infrared radiation emitted by the human body.
Q2: What is the maximum distance for temperature measurement?
A2: The effective distance depends on the size of the target object and its infrared emission. For small objects, the sensor should be placed closer for accurate readings.
Q3: Can I use the ZTP135SR with a 3.3V microcontroller?
A3: Yes, the ZTP135SR operates within a voltage range of 2.7V to 5.5V, making it compatible with 3.3V systems.
Q4: Does the sensor require additional components for operation?
A4: While the sensor can operate standalone, adding a decoupling capacitor and an ambient temperature sensor can improve performance and accuracy.