Skip to content

ThermalController#

The thermal chuck controller is your gateway to controlling a thermo chuck connected to a probe station. software.


method GetCurrentTemp()#

Returns the current temperature of the thermal chuck.

Returns#

Type Description
float The current temperature in degree Celsius.

Example#

temperature = prober.ThermalChuckController.GetCurrentTemp()

method GetState()#

Returns the current state of the thermal chuck controller.

Returns#

Type Description
int The meaning of the returned value depends on the probe station type. For SENTIO the following return values are used: Undefined=0, Controlling=1, Heating=2, Cooling=3, Error=4, Uncontrolled=5, Standby=6

Example#

state = prober.ThermalChuckController.GetState()

method GetTargetTemp()#

Returns the current set temperature of the thermal controller.

Returns#

Type Description
float The currently set up target temperature of the thermal controller.

Example#

set_temp = prober.ThermalChuckController.GetTargetTemp()

method SetTemp()#

Set the target temperature of the controller.

Example#

prober.ThermalChuckController.SetTemp(100)