-200C to 500C
-200C to 500C
0.15C at 0C
< 10 seconds
1 meter
Stainless Steel (SS316)
5V to 24V
< 1mA
> 100M
100 dB
Applications
| The PT100 M6 Screw Probe Thermocouple Temperature Sensor is suitable for various industrial, scientific, and commercial applications, including |
Process control and monitoring
HVAC and refrigeration systems
Laboratory equipment
Medical devices
Food processing and storage
Aerospace and defense
Automotive systems
Certifications and Compliance
CE Mark
RoHS Compliant
IEC 751 Class A
ANSI/ASTM E-230-95
Ordering Information
PT100-M6-1M
Sensor probe, 1-meter cable, and connector
1-year limited warranty
Documentation
Available upon request
Available upon request
Available upon request
The specifications and features listed above are subject to change without notice. Please verify the specifications with the manufacturer before making a purchase.
PT100 M6 Screw Probe Thermocouple Temperature Sensor (1 Meter) DocumentationOverviewThe PT100 M6 Screw Probe Thermocouple Temperature Sensor is a high-accuracy temperature sensor designed for industrial and laboratory applications. It features a M6 screw probe with a 1-meter long cable and a PT100 thermocouple sensor. This sensor is widely used in temperature measurement and control systems, particularly in harsh environments.Technical SpecificationsTemperature range: -200C to 400C
Accuracy: 0.5C
Response time: 10 seconds
Insulation resistance: >100 M
Cable length: 1 meter
Connector type: M6 screw probeConnections and PinoutThe PT100 M6 Screw Probe Thermocouple Temperature Sensor has a 3-pin connector:Pin 1: Positive (Vcc)
Pin 2: Negative (GND)
Pin 3: Signal (Temperature output)Code Examples### Example 1: Arduino Temperature MonitoringIn this example, we will use an Arduino Uno board to read the temperature data from the PT100 sensor and display it on the serial monitor.```c++
const int thermocouplePin = A0; // Analog input pin for thermocouple signalvoid setup() {
Serial.begin(9600);
}void loop() {
int sensorValue = analogRead(thermocouplePin);
float temperature = sensorValue 0.0977; // Convert analog value to temperature (assuming 10mV/C)
Serial.print("Temperature: ");
Serial.print(temperature, 2);
Serial.println(" C");
delay(1000);
}
```### Example 2: Raspberry Pi Temperature LoggerIn this example, we will use a Raspberry Pi to read the temperature data from the PT100 sensor and log it to a CSV file.```python
import time
import csv
import spidev# Open SPI interface
spi = spidev.SpiDev()
spi.open(0, 0)def read_temperature():
# Read analog value from PT100 sensor
adc_output = spi.xfer([0x01, 0x80, 0x00])
temperature = (adc_output[1] << 8 | adc_output[2]) 0.0977 # Convert analog value to temperature (assuming 10mV/C)
return temperaturewhile True:
temperature = read_temperature()
print("Temperature: {:.2f} C".format(temperature))
with open('temperature_log.csv', 'a') as csvfile:
writer = csv.writer(csvfile)
writer.writerow([time.strftime("%Y-%m-%d %H:%M:%S"), temperature])
time.sleep(60) # Log temperature every 1 minute
```Note: In both examples, you need to calibrate the sensor according to the manufacturer's instructions and adjust the conversion factor (0.0977) accordingly.Wiring DiagramPlease refer to the datasheet or manufacturer's documentation for detailed wiring diagrams and connection instructions.