fix missing library (#4051)

This commit is contained in:
Samuel Sieb 2022-11-23 16:22:04 -08:00 committed by Jesse Hills
parent 9e516efe10
commit ae74189fc2
No known key found for this signature in database
GPG key ID: BEAAE804EFD8E83A

View file

@ -86,6 +86,8 @@ async def to_code(config):
if CORE.is_esp32:
cg.add_library("WiFiClientSecure", None)
cg.add_library("HTTPClient", None)
if CORE.is_esp8266:
cg.add_library("ESP8266HTTPClient", None)
if CONF_TOUCH_SLEEP_TIMEOUT in config:
cg.add(var.set_touch_sleep_timeout_internal(config[CONF_TOUCH_SLEEP_TIMEOUT]))