-
Notifications
You must be signed in to change notification settings - Fork 0
/
cullAssistant.yaml
70 lines (57 loc) · 1.27 KB
/
cullAssistant.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
esphome:
name: cullassistant
friendly_name: cullAssistant
esp32:
board: esp32dev
framework:
type: arduino
# Enable logging
logger:
api:
ota:
mdns:
disabled: false
wifi:
ap: {} # This spawns an AP with the device name and mac address with no password.
captive_portal:
web_server:
port: 80
external_components:
- source:
type: git
url: https://github.com/ssieb/esphome_components
ref: b922726dae9cbb0e7945446610ca7aab808559f2
components: [ serial_csv ]
uart:
- id: uart_1
tx_pin: 17
rx_pin: 16
baud_rate: 9600
data_bits: 8
parity: "NONE"
stop_bits: 1
sensor:
- platform: serial_csv
uart_id: uart_1
sensors:
- index: 1
name: Gallons
unit_of_measurement: "gal"
icon: "mdi:water"
device_class: "water"
state_class: "total_increasing"
- index: 2
name: Gallons Per Minute
unit_of_measurement: "gal/min"
icon: "mdi:water"
device_class: "volume_flow_rate"
state_class: "measurement"
accuracy_decimals: 2
- index: 3
name: State
- index: 4
name: Gallons to Recharge
unit_of_measurement: "gal"
icon: "mdi:water"
device_class: "water"
state_class: "measurement"