Hi guys,
As i can see, some of you have some experience with Max31865 RTD-to-Digital IC.
I'm designing a board with 12 converters.
My doubt: it is necessary to use DRDY pin ? I need to read the state of this pin to trigger an interrupt, maybe ?
Whats the real purpose of the DRDY pin ?
No, you can leave it disconnected. You just need to wait out the conversion time, vs waiting for it to go active & signal the conversion is done.
I put 15 on a board with none of them connected.
Try this sketch from Maxim for reading 1, put it in a loop to cycle thru all 12.
You have to put real #s in these 2 lines:
float Reference_Resistor; //Reference Resistor installed on the board.
float RTD_Resistance; //RTD Resistance at 0 Degrees. Please refer to your RTD data sheet.
This uses DRDY, adjust to wait it out if you don't use it.
I'm using a breakout board supplied by a company called playing with fusion it has 2 pt100/1000 inputs and has code on the site www.playingwithfusion.com
CrossRoads:
No, you can leave it disconnected. You just need to wait out the conversion time, vs waiting for it to go active & signal the conversion is done.
I put 15 on a board with none of them connected.
Try this sketch from Maxim for reading 1, put it in a loop to cycle thru all 12.
You have to put real #s in these 2 lines:
float Reference_Resistor; //Reference Resistor installed on the board.
float RTD_Resistance; //RTD Resistance at 0 Degrees. Please refer to your RTD data sheet.
This uses DRDY, adjust to wait it out if you don't use it.
Have you run this code on an Arduino and does it work