1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-03 20:02:22 +01:00
This commit is contained in:
J. Nick Koston
2025-08-18 17:34:08 -05:00
parent a999540d4b
commit 58a9944601

View File

@@ -1389,7 +1389,7 @@ class MemoryAnalyzer:
# Top consumers
lines.append("")
lines.append("Top Flash Consumers:")
for i, (name, mem) in enumerate(components[:10]):
for i, (name, mem) in enumerate(components[:25]):
if mem.flash_total > 0:
percentage = (
(mem.flash_total / total_flash * 100) if total_flash > 0 else 0