mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-05-05 18:48:59 +00:00
957 B
957 B
layout, title, description, date, sidebar, comments, sharing, footer, ha_category, ha_iot_class, logo, ha_release
layout | title | description | date | sidebar | comments | sharing | footer | ha_category | ha_iot_class | logo | ha_release |
---|---|---|---|---|---|---|---|---|---|---|---|
page | Pi-Hole Sensor | Instructions how to integrate REST sensors into Home Assistant. | 2016-09-03 16:30 | true | false | true | true | System Monitor | Local Polling | pi_hole.png | 0.28 |
The pi_hole
sensor platform is displaying the statistical summary of a Pi-Hole system.
To enable this sensor, add the following lines to your configuration.yaml
file for a GET request:
# Example configuration.yaml entry
sensor:
- platform: pi_hole
host: 192.168.1.2
ssl: True
verify_ssl: False
Configuration variables:
- host (Optional): The IP address of the Pi-Hole system. Defaults to
localhost
. - ssl (Optional): If
true
, use SSL/TLS to connect to the Pi-Hole system. Defaults toFalse
. - verify_ssl (Optional): Verify the certification of the system. Default to
True
.