Updated Filenames and gitignore

This commit is contained in:
Tim
2025-01-11 16:27:26 +01:00
parent 99b5d87c17
commit 4843cf9d91
6 changed files with 4 additions and 131 deletions
+3 -1
View File
@@ -1,5 +1,7 @@
# Gitignore settings for ESPHome
# This is an example and may include too much for your use-case.
# You can modify this file to suit your needs.
/.esphome/
.esphome/
/secrets.yaml
.vscode/
+1 -1
View File
@@ -166,7 +166,7 @@ display:
dc_pin: 27
busy_pin: 25
reset_pin: 26
model: 7.50inv2
model: 7.50in
update_interval: 60s
lambda: |
int x, y;
-44
View File
@@ -1,44 +0,0 @@
esphome:
name: epaper75
esp32:
board: esp32dev
framework:
type: arduino
# Enable logging
logger:
# Enable Home Assistant API
api:
encryption:
key: "tY/skPnkQn1sZRBYYJ4LL571z+aA1P463WvaX58ju2w="
ota:
platform: esphome
wifi:
ssid: !secret wifi_ssid
password: !secret wifi_password
# Enable fallback hotspot (captive portal) in case wifi connection fails
ap:
ssid: "Epaper75 Fallback Hotspot"
password: "FALLBACKPW"
captive_portal:
i2c:
sda: 21
scl: 22
scan: True
sensor:
- platform: aht10
temperature:
name: "Outside Temperature"
humidity:
name: "Outside Pressure"
update_interval: 60s
-85
View File
@@ -1,85 +0,0 @@
esphome:
name: waveshare-test
friendly_name: WaveShare Test
esp32:
board: esp32dev
framework:
type: arduino
# Enable logging
logger:
# Enable Home Assistant API
api:
encryption:
key: "tY/skPnkQn1sZRBYYJ4LL571z+aA1P463WvaX58ju2w="
ota:
platform: esphome
wifi:
ssid: !secret wifi_ssid
password: !secret wifi_password
# Enable fallback hotspot (captive portal) in case wifi connection fails
ap:
ssid: "Esphome-Web-D05329"
password: "ZqgvIQnFz4Ib"
captive_portal:
spi:
clk_pin: 13
mosi_pin: 14
font:
- file: './fonts/OpenSans-Light.ttf'
id: font10
size: 10
- file: './fonts/OpenSans-Light.ttf'
id: font22
size: 22
- file: './fonts/OpenSans-Light.ttf'
id: font14
size: 14
time:
- platform: homeassistant
id: esptime
timezone: Europe/Berlin
sensor:
# Externe Wetter Sensoren
- platform: homeassistant
id: windgeschwindigkeit
entity_id: sensor.mering_bauhof_windgeschwindigkeit
internal: true
display:
- platform: waveshare_epaper
cs_pin: 15
dc_pin: 27
busy_pin: 25
reset_pin: 26
model: 7.50inv2
update_interval: 60s
lambda: |-
//Time
it.strftime(540, 100, id(font22),TextAlign::BOTTOM_LEFT, "%H:%M", id(esptime).now());
it.strftime(540, 110, id(font14),TextAlign::BOTTOM_LEFT, "%A, %d.%m.%y, KW %W", id(esptime).now());