2018-03-16 06:17:38 +00:00
|
|
|
#-------------------------------------------
|
|
|
|
# PiHole ad Blocking Related Packages
|
|
|
|
#-------------------------------------------
|
|
|
|
# homeassistant:
|
|
|
|
# customize:
|
|
|
|
#
|
|
|
|
# sensor.pihole_ads_percentage_today:
|
|
|
|
# friendly_name: Percentage of Ad Traffic Blocked
|
|
|
|
# unit_of_measurement: '%'
|
|
|
|
# icon: mdi:ticket-percent
|
|
|
|
#
|
|
|
|
# group.pihole:
|
|
|
|
# homebridge_hidden: true
|
|
|
|
#-------------------------------------------
|
|
|
|
sensor:
|
|
|
|
- platform: rest
|
2018-03-16 17:27:11 +00:00
|
|
|
name: House now
|
|
|
|
resource: http://192.168.10.90/api/meters/aggregates
|
2018-03-16 06:17:38 +00:00
|
|
|
method: GET
|
|
|
|
value_template: '{{ value_json.load.instant_power / 1000 }}'
|
|
|
|
unit_of_measurement: kWh
|
|
|
|
|
|
|
|
- platform: rest
|
2018-03-16 17:27:11 +00:00
|
|
|
name: Grid now
|
|
|
|
resource: http://192.168.10.90/api/meters/aggregates
|
2018-03-16 06:17:38 +00:00
|
|
|
method: GET
|
|
|
|
value_template: '{{ value_json.site.instant_power / 1000 }}'
|
|
|
|
unit_of_measurement: kWh
|
|
|
|
|
|
|
|
- platform: rest
|
2018-03-16 17:27:11 +00:00
|
|
|
name: Solar now
|
|
|
|
resource: http://192.168.10.90/api/meters/aggregates
|
2018-03-16 06:17:38 +00:00
|
|
|
method: GET
|
|
|
|
value_template: '{{ value_json.solar.instant_power / 1000 }}'
|
|
|
|
unit_of_measurement: kWh
|
|
|
|
|
|
|
|
- platform: rest
|
|
|
|
name: PowerWall Battery now
|
2018-03-16 17:27:11 +00:00
|
|
|
resource: http://192.168.10.90/api/meters/aggregates
|
2018-03-16 06:17:38 +00:00
|
|
|
method: GET
|
|
|
|
value_template: '{{ value_json.battery.instant_power / 1000 }}'
|
|
|
|
unit_of_measurement: kWh
|
|
|
|
|
|
|
|
- platform: rest
|
|
|
|
name: PowerWall Battery Capacity
|
2018-03-16 17:27:11 +00:00
|
|
|
resource: http://192.168.10.90/api/system_status/soe
|
2018-03-16 06:17:38 +00:00
|
|
|
method: GET
|
|
|
|
value_template: '{{ 13500 // (100 / value_json.percentage) }}'
|
|
|
|
unit_of_measurement: W
|
|
|
|
|
|
|
|
#-------------------------------------------
|
2018-03-16 17:27:11 +00:00
|
|
|
group:
|
|
|
|
Power:
|
|
|
|
entities:
|
|
|
|
- sensor.powerwall_battery_capacity
|
|
|
|
- sensor.powerwall_battery_now
|
|
|
|
- sensor.grid_now
|
|
|
|
- sensor.house_now
|
|
|
|
- sensor.solar_now
|
2018-06-13 01:13:03 +00:00
|
|
|
- camera.grafana_solar_graph
|
2018-03-16 06:17:38 +00:00
|
|
|
#-------------------------------------------
|
|
|
|
|
|
|
|
#
|
|
|
|
# automation:
|
2018-06-13 01:13:03 +00:00
|
|
|
# Located in the Grafana package. Tweets out Solar Production Daily!
|