Franck Nijhof 1833c32a2c Cleans up front matter (#9835)
* Sets front matter defaults

* Removes default front matter from section templates/pages

* Removes default front matter from addon pages

* Removes default front matter from integration pages

* Removes default front matter from posts

* Removes default front matter from docs pages

* Removes default front matter from other pages

* Fixes blog category pages
2019-07-11 14:35:08 -07:00

1.1 KiB

title, description, ha_category, ha_release, ha_iot_class, redirect_from
title description ha_category ha_release ha_iot_class redirect_from
HDDTemp Instructions on how to integrate hard drive temperature information into Home Assistant.
System Monitor
0.32 Local Polling
/components/sensor.hddtemp/

The hddtemp sensor platform is using the data provided by HDDTemp.

It required that hddtemp is started or running in daemon mode on a local or remote system.

$ hddtemp -dF

To setup a HDDTemp to your installation, add the following to your configuration.yaml file:

# Example configuration.yaml entry
sensor:
  - platform: hddtemp
    disks:
      - /dev/sda1

{% configuration %} name: description: Friendly name to use for the frontend. required: false default: HD Temperature type: string host: description: Host where hddtemp is running. required: false default: localhost type: string port: description: Port that is used by hddtemp. required: false default: 7634 type: integer disks: description: "Disk to be monitored. Example: /dev/sda1." required: false type: list {% endconfiguration %}