mirror of
https://github.com/CeeWeasel/fresh-home.git
synced 2026-08-09 18:40:14 -04:00
48 lines
1.1 KiB
YAML
48 lines
1.1 KiB
YAML
esphome:
|
|
name: ${devicename}
|
|
platformio_options:
|
|
board_build.arduino.memory_type: qio_opi
|
|
board_build.flash_mode: dio
|
|
upload_speed: 921600
|
|
monitor_speed: 115200
|
|
|
|
esp32:
|
|
board: ${board}
|
|
flash_size: 16MB
|
|
framework:
|
|
type: ${framework}
|
|
sdkconfig_options:
|
|
CONFIG_ESP32_S3_BOX_BOARD: "y"
|
|
|
|
psram:
|
|
mode: octal
|
|
speed: 80MHz
|
|
|
|
packages:
|
|
network: !include ../common/wifi.yaml
|
|
|
|
# wifi:
|
|
# # Enable fast connect
|
|
# fast_connect: true
|
|
# min_auth_mode: WPA2
|
|
# use_address: ${devicename}.local
|
|
|
|
# networks:
|
|
# - ssid: !secret wifi_ssid
|
|
# password: !secret wifi_password
|
|
# hidden: true
|
|
|
|
# manual_ip:
|
|
# static_ip: ${static_ip}
|
|
# gateway: !secret iot_default_gateway
|
|
# subnet: !secret iot_subnet_mask
|
|
# dns1: !secret iot_default_dns1
|
|
|
|
# # Enable fallback hotspot (captive portal) in case wifi connection fails
|
|
# ap:
|
|
# ssid: "${friendly_name}"
|
|
# password: !secret fallback_ap_password
|
|
|
|
# packages:
|
|
# sensor: !include sensor/rssi_sensor.config.yaml
|
|
# text_sensor: !include text_sensor/wifi_sensor.config.yaml |