Fr3deric
5 years ago
commit
a9629006f7
2 changed files with 70 additions and 0 deletions
@ -0,0 +1,7 @@
@@ -0,0 +1,7 @@
|
||||
/.esphome/ |
||||
**/.pioenvs/ |
||||
**/.piolibdeps/ |
||||
**/lib/ |
||||
**/src/ |
||||
**/platformio.ini |
||||
/secrets.yml |
@ -0,0 +1,63 @@
@@ -0,0 +1,63 @@
|
||||
<<: !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 |
Loading…
Reference in new issue