lesson

Updated 6 days ago
Your smartphone battery and 3D printer nozzle share a critical safety problem: if they get too hot, they fail catastrophically. How does a digital circuit measure that rising heat in real time?
The answer is an NTC thermistor, an electronic component whose electrical resistance (the opposition to current flow, measured in ohms, Ξ©) drops rapidly as temperature increases.
πCreate an interactive visual comparison between a regular metal conductor and an NTC thermistor. Left side: standard resistor with a flat/slightly rising resistance curve as temperature rises. Right side: NTC thermistor showing a steep, exponential drop in resistance from 100kΞ© at -20Β°C down to 1kΞ© at 100Β°C. Include a slider from 0Β°C to 100Β°C that updates a digital resistance meter and shows atomic-level charge carrier generation (more free electrons popping loose as heat increases in the thermistor). Color scheme: deep navy (#1e2945) text, light background, vibrant heat glow (#ff5722) and cool blue (#22b7ff). Clean modern card UI.
In 1833, Michael Faraday first discovered this effect while studying silver sulfide, noticing that unlike metals, its resistance plummeted when heated because thermal energy frees bound electrons into the conduction band.
Because NTC stands for negative temperature coefficient, heating the device creates a negative change in resistance. But microcontrollers and comparators cannot read resistance directlyβthey only measure voltage.
How can we convert this dropping resistance into a clean, measurable voltage signal?
The Potential Divider Interface
A potential divider (or voltage divider) is a circuit with two resistors in series that splits an input voltage (Vinβ) across them in proportion to their resistance values.
πCreate a clear, annotated schematic diagram of a potential divider circuit. Show Vin at the top rail (+5V), R1 as the top resistor, a central node labeled Vout, R2 as the bottom resistor, and 0V (GND) at the bottom. Visually display the equation V_out = V_in * (R2 / (R1 + R2)) with color-coded callouts matching R1, R2, and Vout. Include a dynamic bar graph next to the circuit showing how changing the ratio R2/(R1+R2) proportionally scales the output voltage bar from 0V to 5V.
By Ohm's law (V=Iβ
R), both resistors share the identical series current I=R1β+R2βVinββ, making the voltage across the lower resistor equal to Voutβ=Vinββ
R1β+R2βR2ββ.
If we replace one of these fixed resistors with our thermistor, which position should it go in: the top or the bottom?
Designing for Hot or Cold Detection
The placement of the thermistor (Rthβ) determines whether the output voltage increases or decreases when the environment warms up.