blob: 22e98fc5feac3b2797b0632a868cc72c1c285377 [file] [log] [blame]
// Copyright 2020 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
library fuchsia.hardware.temperature;
using zx;
[ForDeprecatedCBindings]
protocol Device {
/// Get the current temperature in degrees Celsius.
GetTemperatureCelsius() -> (zx.status status, float32 temp);
};