1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-04 12:22:20 +01:00

Fixes ip include on arduino 2.7.4 (#5620)

This commit is contained in:
Jimmy Hedman
2023-10-29 19:35:33 +01:00
committed by Jesse Hills
parent 35039b45e4
commit 1282a15b14

View File

@@ -3,7 +3,11 @@
#include <string>
#include <cstdio>
#include <array>
#include "esphome/core/macros.h"
#if defined(USE_ESP_IDF) || defined(USE_LIBRETINY) || USE_ARDUINO_VERSION_CODE > VERSION_CODE(3, 0, 0)
#include <lwip/ip_addr.h>
#endif
#if USE_ARDUINO
#include <Arduino.h>