MAX31865

Thread Starter

jvdrc123

Joined Apr 11, 2024
21
Can anyone please help me out with how to configure MAX31865? I am using 3 wired PT1000. I am also having doubt in connections between MAX31865 and Arduino nano.
 

Thread Starter

jvdrc123

Joined Apr 11, 2024
21
I went through it but I am not getting it.
If possible can you explain the statement " You will have to cut the thin trace in between the 2-way jumper on the right side of the board, and then solder closed the blob on the right side. Then next to the terminal block on the left, solder closed that jumper as well. Alternatively you can put a piece of wire into the terminal blocks to 'short' them".

Can you show it to me diagrammatically? like which wire should I cut?
 

Thread Starter

jvdrc123

Joined Apr 11, 2024
21
i have another doubt how do we connect the pt1000 pins to max31865. I am using 3 wire pt1000. I am getting wrong values. it is throwing all the errors



1714893344078.png
 
Last edited:

ericgibbs

Joined Jan 29, 2010
21,439
Hi jv,
Please post a diagram showing how you have connected the PT1000 to the MAX and the remainder of the circuit.
E
 

ericgibbs

Joined Jan 29, 2010
21,439
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:
EG57_ 1709.png
 
Last edited:

ericgibbs

Joined Jan 29, 2010
21,439
Hi,
Thats what the d/s notes say,
You will have to cut the thin trace in between the 2-way jumper on the right side of the board,
E
 

Thread Starter

jvdrc123

Joined Apr 11, 2024
21
13:07:07.653 -> Temperature: -242.02 °C

13:07:13.062 -> Temperature: -242.02 °C

13:07:14.096 -> Temperature: -242.02 °C

13:07:15.210 -> Temperature: -242.02 °C

13:07:16.268 -> Temperature: -242.02 °C

13:07:17.327 -> Temperature: -242.02 °C

13:07:18.443 -> Temperature: -242.02 °C

13:07:19.515 -> Temperature: -242.02 °C

13:07:20.582 -> Temperature: -242.02 °C

13:07:21.655 -> Temperature: -242.02 °C

13:07:22.742 -> Temperature: -242.02 °C

13:07:23.787 -> Temperature: -242.02 °C


i dont know why but it is constantly showing me this
 

Thread Starter

jvdrc123

Joined Apr 11, 2024
21
//I am using Arduino Nano
C-like:
#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

}
 
Last edited by a moderator:

ericgibbs

Joined Jan 29, 2010
21,439
Hi,
I will check that Code.
Do you have a photo showing the wiring to the PT1000 , MAX and the Nano, that you could post?
E

Update:
Did you do this check?
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
 
Last edited:
Top