-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
60 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
substitutions: | ||
name: yulc | ||
friendly_name: yulc | ||
project_name: aae.yulc | ||
project_version: '1.0' | ||
|
||
esphome: | ||
name: ${name} | ||
friendly_name: ${friendly_name} | ||
min_version: 2024.6.0 | ||
name_add_mac_suffix: false | ||
platformio_options: | ||
board_build.flash_mode: dio | ||
project: | ||
name: ${project_name} | ||
version: ${project_version} | ||
|
||
esp32: | ||
board: esp32-s3-devkitc-1 | ||
framework: | ||
type: arduino | ||
version: latest | ||
|
||
# Enable logging | ||
logger: | ||
|
||
# Enable Home Assistant API | ||
api: | ||
|
||
# Allow Over-The-Air updates | ||
ota: | ||
- platform: esphome | ||
|
||
# Allow provisioning Wi-Fi via serial | ||
improv_serial: | ||
|
||
wifi: | ||
# Set up a wifi access point | ||
ap: {} | ||
|
||
# In combination with the `ap` this allows the user | ||
# to provision wifi credentials to the device via WiFi AP. | ||
captive_portal: | ||
|
||
dashboard_import: | ||
package_import_url: github://esphome/firmware/esphome-web/esp32s3.yaml@main | ||
import_full_config: true | ||
|
||
# Sets up Bluetooth LE (Only on ESP32) to allow the user | ||
# to provision wifi credentials to the device. | ||
esp32_improv: | ||
authorizer: none | ||
|
||
# To have a "next url" for improv serial | ||
web_server: | ||
|
||
|
||
sensor: | ||
- platform: internal_temperature | ||
name: "Internal Temperature" |