Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

HardwareStatus

import type { HardwareStatus } from "https://googleapis.deno.dev/v1/androidmanagement:v1.ts";

Hardware status. Temperatures may be compared to the temperature thresholds available in hardwareInfo to determine hardware health.

interface HardwareStatus {
batteryTemperatures?: number[];
cpuTemperatures?: number[];
cpuUsages?: number[];
createTime?: Date;
fanSpeeds?: number[];
gpuTemperatures?: number[];
skinTemperatures?: number[];
}

§Properties

§
batteryTemperatures?: number[]
[src]

Current battery temperatures in Celsius for each battery on the device.

§
cpuTemperatures?: number[]
[src]

Current CPU temperatures in Celsius for each CPU on the device.

§
cpuUsages?: number[]
[src]

CPU usages in percentage for each core available on the device. Usage is 0 for each unplugged core. Empty array implies that CPU usage is not supported in the system.

§
createTime?: Date
[src]

The time the measurements were taken.

§
fanSpeeds?: number[]
[src]

Fan speeds in RPM for each fan on the device. Empty array means that there are no fans or fan speed is not supported on the system.

§
gpuTemperatures?: number[]
[src]

Current GPU temperatures in Celsius for each GPU on the device.

§
skinTemperatures?: number[]
[src]

Current device skin temperatures in Celsius.