2024年12月4日星期三 上午1:19:00

Home Assistant ESPHome Series: ESPHome ( ESP8266 & ESP32)

5 个月 前
#41399 引用
1
0
5 个月 前
#41400 引用
ESP8266 d1mini芯片
ESP8266  12f
0
4 个月 前
#44517 引用
ESPHome addon

The wizard will guide you through creating your first configuration and install it on your ESP device.



step 1.Install ESPHome addon on hassos


add https://github.com/esphome/home-assistant-addon.git

search  ESPHome

Install ESPHome addon


detail
复制这个链接:https://github.com/hassio-addons/repository-beta
打开supervisor中的加载项商店
0
4 个月 前
#44518 引用
step 2

your ESP device is connected with a cable to a computer.


name your configuration
enter your wireless network settings






You will need to name your configuration and enter your wireless network settings so that the ESP device can come online and can communicate with Home Assistant.
0
3 个月 前
#45494 引用
1
0
2 个月 前
#46591 引用
The basic project code 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
0
2 个月 前
#46593 引用
flash Mode

准备好bin文件写入到硬件之前,要先确认一件事情,那就是电脑已经接入USB串口设备

To flash the ESP on the board you need to connect test point IO0 to GND when powering on

for example
https://www.matterxiaomi.com/boards/topic/14451/esphome-custom-firmware-for-some-yeelight-ceiling-lights#46592

Hold the “boot” button (left side upper button) as you tap the “reset” button (left side lower button).

https://www.matterxiaomi.com/boards/topic/31119/esp32-s3-box-3b-latest/page/2#44491

按住boot建松开

按住en键,再按住boot;再松开en,然后松开boot

windows 10 -  设备管理
windows 10 为例,右击我们 文件夹(上图1),选择 文件资源管理器,在打开的文件资源管理器左侧栏,右击 此电脑 ,选择 管理 ,在 计算机管理 的左侧栏选择 设备管理器 ,见上图三。此时分两种情况,有可能之前没有连接端口设备,此时是没有这项的。当插入该硬件设备才会出现,并在小括号中标明端口号。如果之前有,那对比前后可知插入的设备端口号。

Trubleshooting

ESP Nodemcu v3 not detected in ESPHome


遇到的问题
写程序


上传程序的时候遇到Connecting....的时候需要按boot按钮才能写程序,看到程序动了松开就可以了。(ESP32 DEVKITV1才需要这个操作,Wemos D1 R32不需要这个操作)

遇到上传程序报错,可能是你的电路不能满足写程序的需求,这个时候可能需要拔掉你外接的3.3V的连接线才能把程序写进去
0
2 个月 前
#46596 引用
Quick Start

Connect your ESP32/ESP8266 device to your computer

Start ESPHome and Configure your Device

Deploy your Configuration
0
2 个月 前
#46597 引用
matterxiaomi ESPHome入门系列教程

小白ESPHome先决条件
既然是 esp32c3 刷入 ESPHome 固件并联动 Home Assistant 那么就需要

一个 esp32c3

ESPHome 和 Home Assistant 开发环境。

需要一定的软件开发基础,需要懂一些 C++ 和 Docker 的基础命令

能够畅通访问 GitHub 的网络,否则下载相应固件时会很难下载下载。

准备好bin文件

如何正确的连接开发板到计算机usb口

如何设置开发板为烧写模式

用哪种工具烧写固件
0
2 个月 前
#46640 引用
ESPHome 直接互控 不再需要 HA
ESPHome 提供 REST API, 可直接取得 sensor 資料 或是 直接控制 switch/light 開關
Web Server API
ESPHome 從 15.0 版之後, 提供了 http_request 元件, 可 get/post/put 呼叫外部 URL
HTTP Request

https://bbs.hassbian.com/thread-11293-1-1.html
0