meta data for this page
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revision | |||
| home_automation:esphome:ota [2024/02/16 10:01] – niziak | home_automation:esphome:ota [2024/02/16 10:06] (current) – niziak | ||
|---|---|---|---|
| Line 7: | Line 7: | ||
| </ | </ | ||
| - | It is great change | + | It is great chance |
| from | from | ||
| <code yaml> | <code yaml> | ||
| Line 25: | Line 25: | ||
| board: d1_mini | board: d1_mini | ||
| </ | </ | ||
| + | |||
| + | ===== minimal firmware ===== | ||
| + | |||
| + | <code yaml> | ||
| + | esphome: | ||
| + | ... | ||
| + | wifi: | ||
| + | ... | ||
| + | esp8266: | ||
| + | board: ... | ||
| + | ota: | ||
| + | </ | ||
| + | |||
| + | ===== detect real flash size remotely ===== | ||
| + | |||
| + | <code yaml> | ||
| + | debug: | ||
| + | |||
| + | sensor: | ||
| + | - platform: template | ||
| + | name: Flash Real Size | ||
| + | lambda: |- | ||
| + | return ESP.getFlashChipRealSize(); | ||
| + | update_interval: | ||
| + | </ | ||
| + | |||
| + | |||