My PT1000 is having two blue wires and and one red wireHi,
The PT1000 usually has two RED wires and one BLUE, connected as this image.
E
View attachment 321648
THANK YOU. I will tell you.Hi,
With your ohm meter, measure the resistance between the two Blue wires, it should be close to 0 Ohms.
Then measure from the Blue/s to the Red it should be ~1000 Ohms.
Tell me what you measure.
E
Added image:
View attachment 321653
Hi,
With your ohm meter, measure the resistance between the two Blue wires, it should be close to 0 Ohms.
Then measure from the Blue/s to the Red it should be ~1000 Ohms.
Tell me what you measure.
E
Added image:
View attachment 321653
A small doubt there should be zero connectivity between the marked points right?
#include <Wire.h>
#include <Adafruit_MAX31865.h>
#define MAX31865_CS 10 // Chip select pin
#define MAX31865_MOSI 11 // SPI MOSI pin
#define MAX31865_MISO 12 // SPI MISO pin
#define MAX31865_CLK 13 // SPI Clock pin
Adafruit_MAX31865 max31865 = Adafruit_MAX31865(MAX31865_CS, MAX31865_CLK, MAX31865_MISO, MAX31865_MOSI);
void setup() {
Serial.begin(9600);
max31865.begin(MAX31865_3WIRE);
}
void loop() {
// Read temperature in Celsius
float temperature = max31865.temperature(1000, 4300);
// Check if there's an error
if (isnan(temperature)) {
Serial.println("Error reading temperature!");
} else {
// Print the temperature
Serial.print("Temperature: ");
Serial.print(temperature);
Serial.println(" °C");
}
delay(1000); // Delay for 1 second
}
| Thread starter | Similar threads | Forum | Replies | Date |
|---|---|---|---|---|
| E | MAX31865 measurement step | Sensor Design & Implementation | 1 | |
| D | Looking for similar IC to MAX31865 or other solutions | Homework Help | 0 | |
| G | looking for alternative part of MAX31865 IC RTD | Datasheets, Manuals & Parts Identification | 2 |