1
0
mirror of https://github.com/esphome/esphome.git synced 2025-11-20 08:46:01 +00:00

Add vector includes (#4080)

This commit is contained in:
Jesse Hills
2022-11-24 13:12:55 +13:00
committed by GitHub
parent ce5cedb466
commit 9273e3775b
128 changed files with 252 additions and 24 deletions

View File

@@ -7,12 +7,13 @@
#ifdef USE_ESP32
#include <string>
#include <array>
#include <esp_gap_ble_api.h>
#include <esp_gattc_api.h>
#include <esp_bt_defs.h>
#include <esp_gap_ble_api.h>
#include <esp_gatt_common_api.h>
#include <esp_gattc_api.h>
#include <array>
#include <string>
#include <vector>
namespace esphome {
namespace ble_client {