Updated for Blog post and YouTube Links - https://www.vcloudinfo.com/2019/03/revisiting-the-pi-on-pi-day-with-home-assistant.html
This commit is contained in:
parent
d900b31883
commit
007af8196a
|
@ -887,6 +887,8 @@ Sensors add data to Home Assistant. Most of my Doors and windows are hardwired
|
|||
Pi-Hole Package - /config/packages/pihole.yaml</a><br>
|
||||
<a href=https://github.com/CCOSTAN/Home-AssistantConfig/blob/master/config/script/tweet.yaml>
|
||||
Tweet script - /config/script/tweet.yaml</a><br>
|
||||
<a href=https://www.vcloudinfo.com/2019/03/revisiting-the-pi-on-pi-day-with-home-assistant.html>
|
||||
Blog Write Up - Pi Devices and Pi Hole</a><br>
|
||||
</details>
|
||||
<details>
|
||||
<summary>Leverage Alexa and Elekcity outlet to control Printer On/Off via Voice. Turns off automatically after 20 minutes.</summary><p align="center">
|
||||
|
@ -897,6 +899,8 @@ Light watchdog Automations - /config/automation/System/watchdog_light.yaml</a><b
|
|||
<summary>YouTube Videos!</summary><p align="center">
|
||||
<a href=https://www.youtube.com/watch?v=O72BKIGLpnQ>
|
||||
Watch the unboxing and set up of the Epson XP-7100 Printer</a><br>
|
||||
<a href=https://www.youtube.com/watch?v=woA88DFlH5c>
|
||||
Checking out Pi and Pi Hole</a><br>
|
||||
</details>
|
||||
<details>
|
||||
<summary>Sound door chimes whenever doors open or close.</summary><p align="center">
|
||||
|
|
|
@ -1,41 +1,15 @@
|
|||
#-------------------------------------------
|
||||
# @CCOSTAN
|
||||
# Original Repo : https://github.com/CCOSTAN/Home-AssistantConfig
|
||||
# PiHole ad Blocking Related Packages
|
||||
#-------------------------------------------
|
||||
homeassistant:
|
||||
customize:
|
||||
|
||||
sensor.pi_hole_ads_percentage_today:
|
||||
friendly_name: Percentage of Ad Traffic Blocked
|
||||
unit_of_measurement: '%'
|
||||
icon: mdi:ticket-percent
|
||||
|
||||
sensor.pi_hole_domains_being_blocked:
|
||||
friendly_name: Total Domains Blocking
|
||||
icon: mdi:do-not-disturb
|
||||
|
||||
sensor.pi_hole_dns_unique_clients:
|
||||
friendly_name: Unique Clients
|
||||
icon: mdi:desktop-classic
|
||||
|
||||
sensor.pi_hole_ads_blocked_today:
|
||||
friendly_name: Ads Blocked Today
|
||||
icon: mdi:do-not-disturb
|
||||
|
||||
sensor.pi_hole_dns_queries_today:
|
||||
friendly_name: DNS Queries Today
|
||||
icon: mdi:note-text
|
||||
|
||||
sensor.carlopihole:
|
||||
friendly_name: Pi Hole Server
|
||||
icon: mdi:filter-variant
|
||||
|
||||
group.pihole:
|
||||
homebridge_hidden: true
|
||||
# https://www.vcloudinfo.com/2019/03/revisiting-the-pi-on-pi-day-with-home-assistant.html
|
||||
# YouTube Video - https://youtu.be/woA88DFlH5c
|
||||
#-------------------------------------------
|
||||
sensor:
|
||||
- platform: pi_hole
|
||||
host: 192.168.10.11
|
||||
host: 192.168.10.11:80
|
||||
location: admin
|
||||
ssl: false
|
||||
verify_ssl: false
|
||||
monitored_conditions:
|
||||
- ads_blocked_today
|
||||
|
|
Loading…
Reference in New Issue