# Functions

DetectHwmon returns a list of hwmon sensors found on the system, if they exist.
ReportSensors returns the metrics from all the known sensors.

# Variables

ErrNoMetric specifies that no metrics were found for a given Sensor.
FanSensor is the prefix for fan sensors.
TempSensor is the string prefix for a temp sensor.
VoltSensor is the prefix for voltage sensors.

# Structs

Device represents a single sensor chip, usually exposed as /sys/class/hwmon/hwmon*.
Sensor is used to track a single hwmon chip metric.
SensorMetrics reports the actual metrics in a sensor This is meant to be generic for all possible sensor types.
SensorType is for the string prefix of the sensor files.

# Type aliases

MonData is a simple wrapper type for the map returned by ReportSensors.