Esphome - different ways to install ESPHome fireware
different ways to install ESPHome
There are different ways to install ESPHome fireware to a device.This section describes how to install ESPHome fireware.

via web tools
via project
via ESPHome Dashboard
via command cli
Table of Contents
via web tools
https://web.esphome.io/
detail:https://blog.matterxiaomi.com/blog/esphome-esp32-part1/
via project
1.https://esphome.io/projects/index.html
Voice assistant - ESP32-S3-BOX-3
Bluetooth proxy - Generic ESP32
Media Player - 
Empty ESPHome device - ESP32 or ESP8266 
2.https://espresense.com/firmware
via ESPHome Dashboard (esphome add on)
Basic ESPHome configuration looks like this:
esphome:
 name: ultrasonic-sensor
 platform: ESP8266
 board: d1_mini_pro
wifi:
 ssid: 'YOUR_SSID'
 password: 'YOUR_PASSWORD'
# Enable logging
logger:
# Enable Home Assistant API
api:
# Enable over-the-air updates
ota:
sensor:
 - platform: ultrasonic
   trigger_pin: D1
   echo_pin: D2
   name: 'My Ultrasonic Sensor'
   update_interval: 1s
   accuracy_decimals: 2
   unit_of_measurement: cm 
via Docker ESPHome
Advanced ESPHome configuration
ESP32

https://www.matterxiaomi.com/boards/topic/5262/home-assistant-esphome-series-esphome-esp8266-esp32/page/1#5928
Comments
Comments are closed