-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
bwh.yaml
77 lines (67 loc) · 2.22 KB
/
bwh.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
substitutions:
# main prefix for all entities
friendly_name: "Water Heater"
# name of your node
node_name: "water-heater"
# use "esp32-s3-devkitc-1" for Lilygo T-Dongle S3, "esp12e" for iot-uni-dongle,
# "esp8285" for coolrf-heatstick, or your own if you know it
board: "esp32-s3-devkitc-1"
# time platform: "sntp" or "homeassistant"
time_platform: "sntp"
# SSID of your wifi
wifi_ssid: !secret wifi_ssid
# password of your wifi
wifi_password: !secret wifi_password
# password for fallback wifi hotspot
wifi_ap_password: !secret wifi_ap_password
# UART configuration. Somtimes may need to swap tx/rx.
tx_pin: GPIO19 # use TX for iot-uni-dongle or coolrf-heatstick
rx_pin: GPIO20 # use RX for iot-uni-dongle or coolrf-heatstick
# please do not change packeages order it is very important, just comment/uncomment
packages:
remote:
url: https://github.com/dentra/esphome-ewh
ref: master # cant use substitutions here
files:
## Enable additional WiFi signal sensor. Comment next line to disable.
- packages/wifi_signal.yaml
## Enable additional Uptime sensor. Comment next line to disable.
- packages/uptime.yaml
## Uncomment next line to enable additional restart button.
- packages/restart.yaml
## optional package, uncomment next line to enable experimental cloud support
# - packages/cloud.yaml
# Required package, do not comment
- packages/base.yaml
# Required package, replace with esp8266.yaml if you use ESP8266
- packages/esp32.yaml
# Enable Home Assistant API connection.
api:
# Uncomment to enable MQTT connecion.
# mqtt:
# broker: !secret mqtt_borker
# username: !secret mqtt_username
# password: !secret mqtt_password
# WiFi hotspot configuration.
# Comment next 3 lines to enable manual WiFi conviguration via access point.
wifi:
ssid: $wifi_ssid
password: $wifi_password
uart:
tx_pin: $tx_pin
rx_pin: $rx_pin
baud_rate: 9600
vport:
- platform: bwh
climate:
- platform: bwh
id: whc
name: None # use friendly_name
## Uncomment to enable cloud support
# rka_cloud:
# id: cloud
# mac: !secret cloud_mac
# uid: !secret cloud_uid
## Uncomment to enable web server
# web_server:
# include_internal: true