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 GitHub
parent 7cf056e828
commit 01a16141f1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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>