forked from mcaminiti/homeassistant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sensors.yaml
106 lines (87 loc) · 2.74 KB
/
sensors.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
#################################################################
## Sensors
#################################################################
##########################################################
## System
##########################################################
- platform: time_date
display_options:
- 'date_time'
- 'time'
- platform: systemmonitor
resources:
- type: memory_free
- type: memory_use_percent
- type: processor_use
- type: last_boot
##########################################################
## QNAP NAS
##########################################################
- platform: qnap
host: REDACTED.100
port: 443
username: !secret secret_qnap_username
password: !secret secret_qnap_password
ssl: true
verify_ssl: false
monitored_conditions:
- status
- system_temp
- cpu_temp
- cpu_usage
- memory_percent_used
- network_link_status
- drive_smart_status
- drive_temp
- volume_size_free
- volume_size_used
- volume_percentage_used
##########################################################
## Dark Sky Sensor
##########################################################
- platform: darksky
api_key: !secret secret_darksky_api_key
monitored_conditions:
- summary
- minutely_summary
- hourly_summary
- daily_summary
- nearest_storm_distance
- nearest_storm_bearing
- precip_type
- precip_intensity
- precip_probability
- temperature
- apparent_temperature
- dew_point
- wind_speed
- wind_bearing
- cloud_cover
- humidity
- pressure
- visibility
- ozone
##########################################################
## National Weather Service Alerting - Custom Sensor
##########################################################
### WEATHER SERVICE Sensors
- platform: nws_warnings
zone_id: 'REDACTED'
##########################################################
## Red Sea - Aqua UV Sterilizer Check
##########################################################
- platform: history_stats
name: Red Sea Aqua UV Runtime Today
entity_id: switch.redsea_uv_sterlizer
state: "on"
type: time
start: "{{ now().replace(hour=0, minute=0, second=0) }}"
end: "{{ now() }}"
##########################################################
## Integration Energy Sensors
##########################################################
- platform: integration
source: sensor.esp_energy_total_watts
name: energy_total
unit_prefix: k
round: 2