-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.device-shelly-1pm.yaml
103 lines (89 loc) · 2.47 KB
/
.device-shelly-1pm.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
esphome:
name: ${devicename}
platform: ESP8266
board: esp01_1m
comment: ${devicetype}
logger:
switch:
- platform: gpio
name: ${friendly_name}
pin: GPIO15
id: shelly_relay
restore_mode: RESTORE_DEFAULT_OFF
sensor:
- platform: hlw8012
cf_pin: GPIO05
cf1_pin: GPIO13 # not used because it is not available on the 1PM but it is needed to compile
sel_pin: GPIO14 # not used because it is not available on the 1PM but it is needed to compile
power:
name: "${friendly_name} power"
unit_of_measurement: W
id: "shelly1pm_power"
device_class: power
state_class: measurement
accuracy_decimals: 2
filters:
# Map from sensor -> measured value
- calibrate_linear:
- 0.0 -> 1.0
- 110.33186 -> 20.62
- 131.01909 -> 24.32
- 341.33920 -> 62.08
- 5561.41553 -> 1000.0
- 2975.51221 -> 535.7
- 9612.66309 -> 1720.0
- 14891.35352 -> 2679.0
# Make everything below 2W appear as just 0W.
- lambda: if (x < 2) return 0; else return x;
update_interval: $sensor_refresh
- platform: total_daily_energy
name: "${friendly_name} daily energy"
power_id: "shelly1pm_power"
device_class: energy
state_class: total_increasing #uses total_increasing so HA counts energy correctly.
filters:
- multiply: 0.001
unit_of_measurement: kWh
- platform: ntc
sensor: temp_resistance_reading
name: "${friendly_name} temperature"
unit_of_measurement: "°C"
accuracy_decimals: 1
device_class: temperature
calibration:
b_constant: 3350
reference_resistance: 10kOhm
reference_temperature: 298.15K
on_value_range:
- above: ${max_temp}
then:
- homeassistant.event:
event: esphome.overheat
data:
title: "${friendly_name} has overheated."
- platform: resistance
id: temp_resistance_reading
sensor: temp_analog_reading
configuration: DOWNSTREAM
resistor: 32kOhm
- platform: adc
id: temp_analog_reading
pin: A0
output:
- platform: esp8266_pwm
id: state_led
pin:
number: GPIO00
inverted: true
binary_sensor:
- platform: gpio
pin:
number: GPIO4
filters:
- delayed_on_off: 50ms # small delay to prevent debouncing
name: "Switch ${friendly_name}"
on_press:
then:
- switch.toggle: shelly_relay
internal: true
id: switchid