From a9629006f772de05627e0bf28502c99c4e40ecb8 Mon Sep 17 00:00:00 2001 From: Frederic Date: Mon, 13 Apr 2020 10:58:36 +0200 Subject: [PATCH] initial commit --- .gitignore | 7 ++++++ blinkenbaum.yml | 63 +++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 70 insertions(+) create mode 100644 .gitignore create mode 100644 blinkenbaum.yml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..94bdb7f --- /dev/null +++ b/.gitignore @@ -0,0 +1,7 @@ +/.esphome/ +**/.pioenvs/ +**/.piolibdeps/ +**/lib/ +**/src/ +**/platformio.ini +/secrets.yml \ No newline at end of file diff --git a/blinkenbaum.yml b/blinkenbaum.yml new file mode 100644 index 0000000..a816ef1 --- /dev/null +++ b/blinkenbaum.yml @@ -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