-
Notifications
You must be signed in to change notification settings - Fork 0
/
basementstairs.yaml
56 lines (45 loc) · 1.11 KB
/
basementstairs.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
esphomeyaml:
name: basementstairs
platform: ESP8266
board: nodemcuv2
binary_sensor:
- platform: gpio
pin: D7
name: "Basement Stairs Motion"
device_class: motion
switch:
- platform: restart
name: "Basement Stairs Restart"
sensor:
- platform: dht
pin: D3
temperature:
name: "Basement Stairs Temperature"
filters:
- lambda: return x * (9.0/5.0) + 32.0;
unit_of_measurement: "°F"
humidity:
name: "Basement Stairs Humidity"
update_interval: 60s
model: DHT22
wifi:
ssid: !secret wifi_ssid
password: !secret wifi_password
manual_ip:
# Set this to the IP of the ESP
static_ip: 192.168.10.87
# Set this to the IP address of the router. Often ends with .1
gateway: 192.168.10.1
# The subnet of the network. 255.255.255.0 works for most home networks.
subnet: 255.255.255.0
mqtt:
broker: !secret MQTT_broker
username: !secret MQTT_username
password: !secret MQTT_password
discovery: True
reboot_timeout: 1h
# Enable logging
logger:
ota:
web_server:
port: 80