-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfiguration.yaml
114 lines (114 loc) · 3.81 KB
/
configuration.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
106
107
108
109
110
111
112
113
114
mqtt:
sensor:
# Temperature
- name: pws_mypws_temperature_outdoor
device_class: temperature
unit_of_measurement: "°C"
state_class: measurement
state_topic: "pws/MyPWS/temperature_outdoor"
- name: pws_mypws_temperature_indoor
device_class: temperature
unit_of_measurement: "°C"
state_class: measurement
state_topic: "pws/MyPWS/temperature_indoor"
# Humidity
- name: pws_mypws_humidity_outdoor
device_class: humidity
unit_of_measurement: "%"
state_class: measurement
state_topic: "pws/MyPWS/humidity_outdoor"
- name: pws_mypws_humidity_indoor
device_class: humidity
unit_of_measurement: "%"
state_class: measurement
state_topic: "pws/MyPWS/humidity_indoor"
# Barometer
- name: pws_mypws_barometer_relative
device_class: pressure
unit_of_measurement: "hPa"
state_class: measurement
state_topic: "pws/MyPWS/barometer_relative"
- name: pws_mypws_barometer_absolute
device_class: pressure
unit_of_measurement: "hPa"
state_class: measurement
state_topic: "pws/MyPWS/barometer_absolute"
# Rain
- name: pws_mypws_rainrate
unit_of_measurement: "mm/h"
state_topic: "pws/MyPWS/rainrate_mmh"
- name: pws_mypws_daily_rain
unit_of_measurement: "mm"
state_class: measurement
state_topic: "pws/MyPWS/rain_mm"
- name: pws_mypws_rain_total
unit_of_measurement: "mm"
state_class: measurement
state_topic: "pws/MyPWS/totalrain_mm"
# Sun
- name: pws_mypws_solar_radiation
device_class: illuminance
unit_of_measurement: "W/m²"
state_class: measurement
state_topic: "pws/MyPWS/solar_radiation"
- name: pws_mypws_uv
device_class: illuminance
unit_of_measurement: "UV Index"
state_topic: "pws/MyPWS/uv"
# Wind speed
- name: pws_mypws_wind_speed_ms
unit_of_measurement: "m/s"
state_class: measurement
state_topic: "pws/MyPWS/wind_speed_ms"
- name: pws_mypws_wind_speed_kmh
unit_of_measurement: "km/h"
state_class: measurement
state_topic: "pws/MyPWS/wind_speed_kph"
- name: pws_mypws_wind_scale_beaufort
state_topic: "pws/MyPWS/wind_scale_beaufort"
- name: pws_mypws_wind_name
state_topic: "pws/MyPWS/wind_speed_name"
# Wind gust
- name: pws_mypws_wind_gust_ms
unit_of_measurement: "m/s"
state_class: measurement
state_topic: "pws/MyPWS/wind_gust_ms"
- name: pws_mypws_wind_gust_kmh
unit_of_measurement: "km/h"
state_class: measurement
state_topic: "pws/MyPWS/wind_gust_kph"
- name: pws_mypws_wind_gust_in_scale_beaufort
state_topic: "pws/MyPWS/wind_gust_scale_beaufort"
- name: pws_mypws_wind_gust_name
state_topic: "pws/MyPWS/wind_gust_name"
# Wind direction
- name: pws_mypws_wind_direction
unit_of_measurement: "°"
state_topic: "pws/MyPWS/wind_direction"
- name: pws_mypws_wind_direction_text
state_topic: "pws/MyPWS/wind_direction_entext"
- name: pws_mypws_wind_direction_abbreviation
state_topic: "pws/MyPWS/wind_direction_abbreviation"
# Misc
- name: pws_mypws_stationtype
state_topic: "pws/MyPWS/stationtype"
- name: pws_mypws_model
state_topic: "pws/MyPWS/model"
# Dewpoint
- name: pws_mypws_dewpoint
device_class: temperature
unit_of_measurement: "°C"
state_class: measurement
state_topic: "pws/MyPWS/dewpoint"
# Windchill
- name: pws_mypws_windchill
device_class: temperature
unit_of_measurement: "°C"
state_class: measurement
state_topic: "pws/MyPWS/windchill"
# Heat index
- name: pws_mypws_heat_index
device_class: temperature
unit_of_measurement: "°C"
state_class: measurement
state_topic: "pws/MyPWS/heat_index"