mirror of
https://github.com/nuttytree/ESPHome-Devices.git
synced 2024-08-30 18:12:19 +00:00
557dae7ffc
* Add the emporia-vue2 device * Move time component from individual devices to the base device package * Remove ESPSense component since I don't have a Sense energy monitor * Update README * Adjust BLE scan settings on garage fridge to improve wifi reliability
57 lines
1.1 KiB
YAML
57 lines
1.1 KiB
YAML
# Model TGWF115PQM
|
|
substitutions:
|
|
board: esp01_1m
|
|
restore_mode: ALWAYS_ON
|
|
log_baud_rate: '0'
|
|
|
|
packages:
|
|
base: !include device_base_esp8266.yaml
|
|
|
|
binary_sensor:
|
|
- platform: gpio
|
|
id: power_button
|
|
pin:
|
|
number: GPIO3
|
|
inverted: True
|
|
on_press:
|
|
then:
|
|
- switch.toggle: relay
|
|
|
|
sensor:
|
|
- platform: hlw8012
|
|
sel_pin:
|
|
number: GPIO12
|
|
inverted: True
|
|
cf_pin: GPIO04
|
|
cf1_pin: GPIO5
|
|
current_resistor: "0.0019"
|
|
voltage_divider: "2150"
|
|
current:
|
|
name: ${device_name} Current
|
|
unit_of_measurement: A
|
|
power:
|
|
id: power
|
|
name: ${device_name} Power
|
|
unit_of_measurement: W
|
|
initial_mode: CURRENT
|
|
change_mode_every: 4294967295
|
|
update_interval: 2s
|
|
- platform: total_daily_energy
|
|
name: ${device_name}
|
|
icon: mdi:flash
|
|
power_id: power
|
|
method: trapezoid
|
|
|
|
status_led:
|
|
pin:
|
|
number: GPIO13
|
|
inverted: False
|
|
|
|
switch:
|
|
- platform: gpio
|
|
name: ${device_name} Power Switch
|
|
icon: mdi:power
|
|
id: relay
|
|
pin: GPIO14
|
|
restore_mode: ${restore_mode}
|