mirror of
https://github.com/esphome/esphome.git
synced 2026-09-01 18:46:02 +00:00
4b6ba05e5558301e9fd1bede2f2d9587457151bd
std::list uses per-node heap allocation (one allocation per element) and has poor cache locality. std::vector is contiguous and uses a single allocation. Changes: - Replace std::list<Header> with std::vector<Header> in perform() virtual method signature across all platforms (IDF, Arduino, Host) - Update all start(), get(), post() overloads accordingly - Add ESPDEPRECATED overloads for std::list<Header> callers - Update online_image to use std::vector<Header> - Clean up request_headers construction in play() using structured bindings and reserve()
Description
ESPHome is a system to control your ESP8266/ESP32 by simple yet powerful configuration files and control them remotely through Home Automation systems.
Readme
Multiple Licenses
585 MiB
Languages
C++
56.1%
Python
43.3%
C
0.3%
JavaScript
0.2%
