You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
1.1 KiB
64 lines
1.1 KiB
5 years ago
|
<<: !include secrets.yml
|
||
|
|
||
|
esphome:
|
||
|
name: blinkenbaum
|
||
|
platform: ESP8266
|
||
|
board: d1_mini
|
||
|
on_boot:
|
||
|
then:
|
||
|
- light.turn_on:
|
||
|
id: pingpongleds
|
||
|
brightness: 80%
|
||
|
white: 80%
|
||
|
|
||
|
wifi:
|
||
|
ssid: $wifi_ssid
|
||
|
password: $wifi_password
|
||
|
ap:
|
||
|
ssid: "Blinkenbaum Fallback Hotspot"
|
||
|
password: $wifi_ap_password
|
||
|
|
||
|
captive_portal:
|
||
|
|
||
|
logger:
|
||
|
|
||
|
api:
|
||
|
|
||
|
ota:
|
||
|
password: $ota_password
|
||
|
|
||
|
web_server:
|
||
|
|
||
|
sensor:
|
||
|
- platform: dht
|
||
|
model: DHT11
|
||
|
pin: D4
|
||
|
temperature:
|
||
|
name: "Living Room Temperature"
|
||
|
humidity:
|
||
|
name: "Living Room Humidity"
|
||
|
update_interval: 60s
|
||
|
|
||
|
light:
|
||
|
- platform: neopixelbus
|
||
|
id: pingpongleds
|
||
|
name: "Ping-Pong LEDs"
|
||
|
type: GRBW
|
||
|
variant: SK6812
|
||
|
method: ESP8266_DMA
|
||
|
pin: GPIO3
|
||
|
num_leds: 5
|
||
|
effects:
|
||
|
- addressable_twinkle:
|
||
|
name: twinkle
|
||
|
twinkle_probability: 5%
|
||
|
progress_interval: 4ms
|
||
|
- addressable_random_twinkle:
|
||
|
name: randomtwinkle
|
||
|
twinkle_probability: 5%
|
||
|
progress_interval: 32ms
|
||
|
- addressable_rainbow:
|
||
|
name: rainbow
|
||
|
speed: 10
|
||
|
width: 50
|