Reference   Language | Libraries | Comparison | Changes

Arduino_MKRENV : ENV class

readTemperature

Description

Read the temperature sensor’s temperature value. If no unit is specified as parameter, the value will be expressed in Celsius.

Syntax

ENV.readTemperature(unit)

Parameters

FAHRENHEIT - to get the temperature in Fahrenheit.
CELSIUS - to get the temperature in Celsius (default)

Returns

The sensor’s temperature given as float, using the unit selected.

Example


Serial.print("Temperature = ");
Serial.print(ENV.readTemperature());
Serial.println(" °C");

See Also

Reference Home

Corrections, suggestions, and new documentation should be posted to the Forum.

The text of the Arduino reference is licensed under a Creative Commons Attribution-ShareAlike 3.0 License. Code samples in the reference are released into the public domain.