An RTD wiring schematic is a diagram showing how to connect a Resistance Temperature Detector's lead wires to a transmitter or controller to accurately measure temperature by compensating for the resistance of the copper wires themselves. Choosing the correct schematic configuration changes your measurement accuracy from a potentially useless multi-degree error down to a precise ±0.1°C by canceling out the voltage drop across long cable runs. Makers and DIYers commonly confuse RTD schematics with thermocouple wiring; thermocouples generate a microvolt signal based on the Seebeck effect and require specific alloy extension wires, whereas RTDs are passive resistors that simply require standard copper wire to measure resistance changes.
The Core Problem: Why Lead Wire Resistance Matters
To understand why we need different RTD wiring schematics, you have to look at the physics of the most common RTD element: the PT100. A PT100 sensor has a baseline resistance of exactly 100 ohms at 0°C. As temperature rises, the resistance increases at a rate of approximately 0.385 ohms per degree Celsius (based on the IEC 60751 standard alpha curve).
Because the resistance change per degree is so small, any extra resistance introduced by the copper wires connecting the sensor to your control panel gets interpreted by the reader as a temperature increase. If you are running a cable from a basement boiler to a first-floor thermostat, the copper wire itself acts as a hidden resistor in series with your sensor. Without a schematic designed to compensate for this, your temperature readings will drift wildly based on the length and gauge of your wire.
Decoding the RTD Wiring Schematics
When you look at a manufacturer's datasheet or a control board silkscreen, you will see one of three standard configurations. Here is how they compare in real-world applications:
| Configuration | Wire Count | Compensation Method | Best Use Case | Typical Accuracy |
|---|---|---|---|---|
| 2-Wire | 2 | None (Lead resistance adds directly to sensor reading) | Short runs (<3 ft), PT1000 sensors, non-critical DIY | Low (High error on long runs) |
| 3-Wire | 3 | Wheatstone bridge or matched current sources subtract one lead's resistance | Industrial standard, home HVAC, boiler outdoor reset | High (Assumes all 3 wires are identical gauge/length) |
| 4-Wire | 4 | Kelvin connection (Separate force and sense lines eliminate lead resistance entirely) | Laboratory calibration, high-precision scientific builds | Extreme (Truest measurement) |
In a 3-wire schematic, the transmitter pushes current through one pair of wires and measures the voltage across a different pair. By assuming the third wire has the exact same resistance as the second wire, the internal bridge circuit mathematically subtracts the lead resistance. This is why a 3-wire schematic strictly requires all three conductors to be the same AWG, material, and length.
Worked Numeric Example: The 100-Foot Cable Run Penalty
Let's put real numbers to this theory to see what happens when you ignore the schematic and force a 2-wire connection on a long run.
The Scenario: You are wiring a PT100 sensor to monitor a solar thermal storage tank in the attic, running 100 feet of 24 AWG copper wire down to your basement controller.
- Wire Resistance: 24 AWG copper has a resistance of 25.67 Ω per 1,000 feet.
- One-Way Run: 100 feet of wire = 2.567 Ω.
- 2-Wire Loop: Current must travel out and back, so total lead resistance = 2.567 Ω × 2 = 5.134 Ω.
Now, we calculate the temperature error. Since the PT100 changes by 0.385 Ω per °C, we divide the unwanted lead resistance by the temperature coefficient:
5.134 Ω / 0.385 Ω/°C = 13.33 °C of error
Where You Meet This in Practice
While RTDs are heavily used in industrial PLCs, you will frequently encounter RTD wiring schematics in advanced residential and DIY electrical projects:
- High-Efficiency Modulating Boilers: Modern condensing boilers use an 'outdoor reset' curve. An RTD mounted on the north side of the house feeds ambient temperature back to the boiler's control board via a 3-wire schematic, allowing the boiler to lower its water temperature on mild days, saving gas.
- Homebrewing and Fermentation: Precise temperature control is critical for lagering. Builders use PT100 or PT1000 sensors wired to Arduino/ESP32 PID controllers to manage glycol chiller pumps.
- 3D Printer Hotends: While older printers used thermistors, modern high-temp 3D printers use PT1000 RTDs (which have a 1000 Ω baseline) paired with 2-wire schematics. Because the baseline resistance is 10x higher than a PT100, the lead wire resistance becomes a much smaller percentage of the total, making 2-wire viable for short runs.
Pro-Tip for DIYers: If you are building a custom ESP32 temperature monitor and want to avoid running 3-conductor cable, buy a PT1000 sensor instead of a PT100. Use a breakout board like the Adafruit MAX31865 (configured for PT1000 with a 4.3kΩ reference resistor). The higher base resistance makes 2-wire schematics perfectly accurate for runs under 30 feet.
Frequently Asked Questions
Can I convert a 3-wire RTD to a 2-wire schematic by twisting two leads together?
Yes, you can physically twist two of the three wires together at the transmitter terminal to force a 3-wire sensor to work on a 2-wire input. However, you completely bypass the lead-resistance compensation. You will inherit the full cable resistance error calculated in the example above. If you must use a 2-wire input over a long distance, swap the PT100 sensor for a PT1000 sensor to minimize the percentage of error introduced by the copper leads.
What are the standard IEC wire colors for a 3-wire RTD schematic?
According to the IEC 60751 standard, the most common color code for a 3-wire RTD is Red, Red, and White (or sometimes Red, Black, White depending on the manufacturer's regional variant). The two wires of the same color (the two Reds) are the ones that share a common connection point inside the sensor probe and must be connected to the compensation terminals on your transmitter. Always verify with a multimeter: the two wires that read roughly 0.1 to 0.5 ohms between them are your matched pair.
Why does my microcontroller RTD schematic need a precision reference resistor?
Microcontrollers cannot measure resistance directly; they measure voltage. Chips like the MAX31865 use a ratiometric measurement technique. They pass the same excitation current through both your RTD sensor and a known, ultra-precise reference resistor on the breakout board (typically 430Ω for PT100, or 4.3kΩ for PT1000). By comparing the voltage drop across the RTD to the voltage drop across the reference resistor, the chip calculates the RTD's resistance. If your schematic calls for a 0.1% tolerance reference resistor and you substitute a standard 5% carbon film resistor, your temperature readings will be offset by several degrees right out of the gate.






