From 7d12ddb0e5c405009bb64ab7c597529f822f3860 Mon Sep 17 00:00:00 2001 From: Edward Firmo <94725493+edwardtfn@users.noreply.github.com> Date: Fri, 27 Dec 2024 01:56:39 +0100 Subject: [PATCH] Add WiFi SSID --- .test/esphome_ard_basic.yaml | 4 ++++ .test/esphome_ard_ble_proxy.yaml | 4 ++++ .test/esphome_ard_core.yaml | 4 ++++ .test/esphome_idf53_basic.yaml | 4 ++++ .test/esphome_idf53_ble_proxy.yaml | 4 ++++ .test/esphome_idf53_core.yaml | 4 ++++ .test/esphome_idf53_media_player.yaml | 4 ++++ .test/esphome_idf_basic.yaml | 4 ++++ .test/esphome_idf_ble_proxy.yaml | 4 ++++ .test/esphome_idf_core.yaml | 4 ++++ .test/esphome_idf_media_player.yaml | 4 ++++ 11 files changed, 44 insertions(+) diff --git a/.test/esphome_ard_basic.yaml b/.test/esphome_ard_basic.yaml index 91753ec..20554a4 100644 --- a/.test/esphome_ard_basic.yaml +++ b/.test/esphome_ard_basic.yaml @@ -6,4 +6,8 @@ packages: esp32: framework: type: arduino + +wifi: + ssid: !secret wifi_ssid + password: !secret wifi_password ... diff --git a/.test/esphome_ard_ble_proxy.yaml b/.test/esphome_ard_ble_proxy.yaml index e21e328..86cc07c 100644 --- a/.test/esphome_ard_ble_proxy.yaml +++ b/.test/esphome_ard_ble_proxy.yaml @@ -7,4 +7,8 @@ packages: esp32: framework: type: arduino + +wifi: + ssid: !secret wifi_ssid + password: !secret wifi_password ... diff --git a/.test/esphome_ard_core.yaml b/.test/esphome_ard_core.yaml index bee25b3..1b50c90 100644 --- a/.test/esphome_ard_core.yaml +++ b/.test/esphome_ard_core.yaml @@ -5,4 +5,8 @@ packages: esp32: framework: type: arduino + +wifi: + ssid: !secret wifi_ssid + password: !secret wifi_password ... diff --git a/.test/esphome_idf53_basic.yaml b/.test/esphome_idf53_basic.yaml index 44ebb3b..1dabf1f 100644 --- a/.test/esphome_idf53_basic.yaml +++ b/.test/esphome_idf53_basic.yaml @@ -8,4 +8,8 @@ esp32: type: esp-idf version: 5.3.1 platform_version: 6.9.0 + +wifi: + ssid: !secret wifi_ssid + password: !secret wifi_password ... diff --git a/.test/esphome_idf53_ble_proxy.yaml b/.test/esphome_idf53_ble_proxy.yaml index d4aa126..b17b6d2 100644 --- a/.test/esphome_idf53_ble_proxy.yaml +++ b/.test/esphome_idf53_ble_proxy.yaml @@ -9,4 +9,8 @@ esp32: type: esp-idf version: 5.3.1 platform_version: 6.9.0 + +wifi: + ssid: !secret wifi_ssid + password: !secret wifi_password ... diff --git a/.test/esphome_idf53_core.yaml b/.test/esphome_idf53_core.yaml index 438146c..18239c7 100644 --- a/.test/esphome_idf53_core.yaml +++ b/.test/esphome_idf53_core.yaml @@ -7,4 +7,8 @@ esp32: type: esp-idf version: 5.3.1 platform_version: 6.9.0 + +wifi: + ssid: !secret wifi_ssid + password: !secret wifi_password ... diff --git a/.test/esphome_idf53_media_player.yaml b/.test/esphome_idf53_media_player.yaml index c8c4414..fdc7e14 100644 --- a/.test/esphome_idf53_media_player.yaml +++ b/.test/esphome_idf53_media_player.yaml @@ -9,4 +9,8 @@ esp32: type: esp-idf version: 5.3.1 platform_version: 6.9.0 + +wifi: + ssid: !secret wifi_ssid + password: !secret wifi_password ... diff --git a/.test/esphome_idf_basic.yaml b/.test/esphome_idf_basic.yaml index 9f20465..ab3d202 100644 --- a/.test/esphome_idf_basic.yaml +++ b/.test/esphome_idf_basic.yaml @@ -6,4 +6,8 @@ packages: esp32: framework: type: esp-idf + +wifi: + ssid: !secret wifi_ssid + password: !secret wifi_password ... diff --git a/.test/esphome_idf_ble_proxy.yaml b/.test/esphome_idf_ble_proxy.yaml index 3aeba92..c972d0f 100644 --- a/.test/esphome_idf_ble_proxy.yaml +++ b/.test/esphome_idf_ble_proxy.yaml @@ -7,4 +7,8 @@ packages: esp32: framework: type: esp-idf + +wifi: + ssid: !secret wifi_ssid + password: !secret wifi_password ... diff --git a/.test/esphome_idf_core.yaml b/.test/esphome_idf_core.yaml index 3daf403..846889a 100644 --- a/.test/esphome_idf_core.yaml +++ b/.test/esphome_idf_core.yaml @@ -5,4 +5,8 @@ packages: esp32: framework: type: esp-idf + +wifi: + ssid: !secret wifi_ssid + password: !secret wifi_password ... diff --git a/.test/esphome_idf_media_player.yaml b/.test/esphome_idf_media_player.yaml index 1c2697b..7f94d6e 100644 --- a/.test/esphome_idf_media_player.yaml +++ b/.test/esphome_idf_media_player.yaml @@ -7,4 +7,8 @@ packages: esp32: framework: type: esp-idf + +wifi: + ssid: !secret wifi_ssid + password: !secret wifi_password ...