The schematic symbol temperature sensor designers use on a blueprint depends entirely on the governing standard (IEC 60617 vs. IEEE 315/ANSI) and the underlying physics of the component. A thermistor, an RTD, a thermocouple, and a digital IC all measure heat, but their schematic representations, physical pinouts, and cable color codes are radically different. Misinterpreting these symbols or relying on a single region's wiring color standard is the leading cause of reversed polarity, blown sensor ICs, and noisy readings on the bench.
Master Reference: Temperature Sensor Symbols and Pinouts
The table below maps the four primary temperature sensing technologies to their standard schematic symbols, physical pinouts, and baseline electrical characteristics. Use this as your primary lookup when reading a datasheet or reverse-engineering a control board.
| Component Type | IEC 60617 Symbol | IEEE 315 / ANSI Symbol | Standard Pinout / Wire Colors | Typical Application & Range |
|---|---|---|---|---|
| NTC Thermistor (e.g., 10kΩ at 25°C) | Rectangle with diagonal line, -t° modifier | Rectangle with -t° inside | 2-wire, non-polarized. Colors vary (often Red/Black or Brown/Black). | ESP32/Arduino battery monitoring, 3D printer hotends (-40°C to +125°C). |
| RTD (e.g., PT100 / PT1000) | Rectangle with 3 vertical lines, one diagonal | Rectangle with RTD or t° and lead lines | 3-wire: Red, Red, White (or Black). 4-wire: Red pair, White pair. | Industrial HVAC, high-precision lab gear (-200°C to +850°C). |
| Thermocouple (Type K / J) | Circle with a 'V' shape and t° | Circle with 'V' and TC or t° | 2-wire polarized. Colors strictly defined by regional standard (see Table 2). | Kilns, exhaust gas, high-temp manufacturing (up to +1260°C for Type K). |
| Digital IC (e.g., DS18B20, LM35) | Logic block with DAC/ADC symbols, labeled | Standard IC rectangle with pin names | DS18B20: 1=GND, 2=DQ (Data), 3=VDD. LM35: 1=+VS, 2=VOUT, 3=GND. | 1-Wire networks, ambient room logging, waterproof aquarium probes. |
Rows People Get Wrong (and How to Avoid Them)
- The DS18B20 Pinout Flip: When looking at the flat face of a TO-92 DS18B20, the pins are 1 (GND), 2 (DQ), 3 (VDD) from left to right. However, if you flip the sensor to look at the curved back, the order reverses. Wiring VDD into the data pin of an ESP32 GPIO will instantly fry the microcontroller's input protection diodes. Always orient by the flat face.
- 3-Wire RTD Sense Line Confusion: In a standard 3-wire PT100, two wires are Red (excitation and return) and one is White (sense). Beginners often assume the colors are arbitrary. They are not. The white wire must connect to the high-impedance sense input of your ADC or amplifier (like the MAX31865). If you swap a red and white wire, the bridge circuit will measure the voltage drop of the cable itself, introducing massive temperature errors.
- Thermocouple Polarity Traps: A thermocouple generates a millivolt signal based on the Seebeck effect. It is strictly polarized. If you wire it backward, the temperature reading will drop as the environment gets hotter. This is compounded by regional color codes (detailed below), where the "Red" wire means negative in the US, but positive in Europe.
Regional Wiring Color Codes and Standard Variants
Unlike mains wiring where NEC (US) and IEC (Europe) differences are widely taught, sensor cable color codes are a frequent blind spot. If you are sourcing thermocouple extension wire from global suppliers, you must verify which standard the manufacturer used. Plugging an IEC-wired Type K probe into a US-calibrated amplifier will reverse the polarity.
| Sensor Type | US Standard (ANSI MC96.1) | International (IEC 60584) | Old UK Standard (BS 1843) |
|---|---|---|---|
| Type K Thermocouple (Jacket Color) | Yellow | Green | Blue |
| Type K Positive (+) Wire | Yellow | Green | Brown |
| Type K Negative (-) Wire | Red | White | Blue |
| Type J Thermocouple (Jacket Color) | Black | Black | Black |
| Type J Positive (+) Wire | White | Black | White |
| Type J Negative (-) Wire | Red | White | Blue |
In US ANSI standards, the Red wire is always the negative (-) lead for thermocouples. This is the exact opposite of DC power wiring conventions where red is positive. In IEC standards, red is not used for thermocouple signal wires (white is negative). If you are debugging a system where temperature drops when heat is applied, swap the thermocouple leads at the terminal block before rewriting your firmware.
Safe Interpretation When Markings Are Faded or Missing
On the jobsite or when salvaging components from old industrial control panels, sensor labels fade, wire jackets degrade, and schematic symbols on the PCB silkscreen wear off. You can definitively identify an unknown temperature sensor using a standard digital multimeter (DMM) and a heat source (even just your fingers).
Follow this decision path to identify the sensor type without risking damage to your microcontroller:
- Set the DMM to Resistance (Ω) Mode: Measure across the two (or three) wires at room temperature (assume 20°C - 25°C).
- Reading is ~10,000Ω (10kΩ): You have an NTC thermistor. (Other common values: 100kΩ for 3D printers, 50kΩ for automotive).
- Reading is ~109Ω: You have a PT100 RTD. (If it reads ~1090Ω, it is a PT1000).
- Reading is ~0.5Ω to 2Ω: You likely have a thermocouple. Proceed to Step 3.
- Reading is Open Loop (OL): The sensor is blown, or it is a digital IC (like a DS18B20) which will not show a simple resistive path.
- Apply Heat (The Pinch Test): Pinch the sensor tip tightly between your fingers to raise its temperature by 5°C to 10°C.
- Resistance drops significantly: Confirmed NTC (Negative Temperature Coefficient) thermistor.
- Resistance rises slightly (e.g., from 109Ω to 111Ω): Confirmed PT100 RTD. Platinum has a positive, highly linear temperature coefficient.
- Switch DMM to Millivolts DC (mV DC): For the suspected thermocouple, connect the probes and apply a lighter or heat gun to the tip.
- Voltage rises into the positive mV range: The red probe is on the positive wire. (For Type K, expect roughly 41 µV per °C above ambient).
- Voltage drops into negative mV: The probes are reversed. Swap them to identify the positive lead, then tape it accordingly.
By cross-referencing the physical behavior with the NIST ITS-90 thermocouple databases and standard RTD curves, you can safely integrate legacy or unlabeled sensors into modern ESP32 or Arduino data-logging projects without guessing the pinout or relying on faded silkscreen symbols.






