Skip to content

Thermometer

Always-working surface temperature probe: no calibration needed. Reads the planet’s current surface temperature in °C directly.

Access: get_component("thermometer") · Like every component, exposes .id and .name.

Current surface temperature in °C as a number. Safe to call from any script; no repair step needed. This is the display °C; for the heat-units progression metric that research thresholds compare against, read get_component("atmosphere").get_heat().

Returns: Number (°C)

peek_command() · next_command() · command_count() · clear_commands() (SELF ONLY): identical on every scriptable machine, see Script Commands.

component = get_component("thermometer")
value = component.get_value()
print(value)