A PT100 is a commonly used RTD (Resistance Temperature Detector).
Compared to NTC (the most common) thermistors, the PT100 is “PTC” so the change in resistance with temperature is the “other way around”.
PT100 sensors also have a very different curve than NTCs handled by the Thermistor class.
“PTC” means “positive temperature coefficient” so electrical resistance increases with raising temperature.
They cannot be used as-is, you must use an amplifier circuit to raise the voltage change so they become usable by SmoothieBoard.
Currently, Smoothie only supports E3D’s PT100 amplifier board.
Other PT100 amplifiers may be supported later (i.e. MAX31865 via SPI).
You wire a PT100 almost the same way you would a thermistor, but you need to specify to Smoothie it is a PT100 and where you connected the amplifier signal output:
temperature_control.hotend.enable true
temperature_control.hotend.sensor pt100_e3d
temperature_control.hotend.e3d_amplifier_pin 1.30 # must be a free ADC pin, not a temperature input
1.30
or 1.31
, depending on what is more convenient.