mirror of
https://github.com/CeeWeasel/fresh-home.git
synced 2026-08-09 10:30:14 -04:00
41 lines
819 B
YAML
41 lines
819 B
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
|
|
|
|
ethernet:
|
|
id: eth
|
|
type: W5500
|
|
clk_pin: GPIO13
|
|
mosi_pin: GPIO11
|
|
miso_pin: GPIO12
|
|
cs_pin: GPIO14
|
|
interrupt_pin: GPIO10
|
|
reset_pin: GPIO9
|
|
|
|
use_address: ${devicename}.local
|
|
|
|
manual_ip:
|
|
static_ip: ${static_ip}
|
|
gateway: !secret iot_default_gateway
|
|
subnet: !secret iot_subnet_mask
|
|
dns1: !secret iot_default_dns1
|
|
|
|
packages:
|
|
ble_proxy: !include ../common/ble_proxy.yaml
|
|
text_sensor: !include text_sensor/ethernet_info.config.yaml |