Skip to content

Commit fcbc92a

Browse files
authored
Merge pull request #88 from edwardtfn/revert-to-media-player-as-default
Revert to media player and neopixelbus as default
2 parents a59f667 + 8a4009d commit fcbc92a

36 files changed

+638
-536
lines changed

.github/workflows/validate_esphome_beta.yml

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,22 @@ permissions:
88
on: # yamllint disable-line rule:truthy
99
push:
1010
paths:
11-
- "**/*.{yml,yaml,h,cpp,c,py}" # Match any file with the extensions in any directory
11+
- "**/*.yml"
12+
- "**/*.yaml"
13+
- "**/*.h"
14+
- "**/*.cpp"
15+
- "**/*.c"
16+
- "**/*.py"
17+
1218
pull_request:
1319
paths:
14-
- "**/*.{yml,yaml,h,cpp,c,py}" # Match any file with the extensions in any directory
20+
- "**/*.yml"
21+
- "**/*.yaml"
22+
- "**/*.h"
23+
- "**/*.cpp"
24+
- "**/*.c"
25+
- "**/*.py"
26+
1527
workflow_dispatch:
1628

1729
concurrency:

.github/workflows/versioning.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
# 2. Manual dispatch - allows independent control over stable and latest tags
55

66
---
7-
87
name: Version and Tags
98

109
on: # yamllint disable-line rule:truthy
@@ -56,10 +55,9 @@ jobs:
5655
5756
- name: Update stable tag
5857
if: |
59-
success() && (
60-
github.event_name == 'workflow_dispatch' && inputs.update_stable ||
61-
github.event_name == 'push'
62-
)
58+
success() &&
59+
github.event_name == 'workflow_dispatch' &&
60+
inputs.update_stable
6361
run: |
6462
# Verify version bump was successful
6563
if [ ! -f "./versioning/VERSION" ]; then

.test/common.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
wifi:
3+
ssid: !secret wifi_ssid
4+
password: !secret wifi_password
5+
...

.test/common_ard.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
packages:
3+
common: !include common.yaml
4+
5+
esp32:
6+
framework:
7+
type: arduino
8+
...

.test/common_idf.yaml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
packages:
3+
common: !include common.yaml
4+
5+
esp32:
6+
framework:
7+
type: esp-idf
8+
9+
light:
10+
- id: !extend light_full
11+
platform: esp32_rmt_led_strip
12+
rgb_order: GRB
13+
rmt_channel: 1
14+
chipset: ws2812
15+
max_refresh_rate: 33ms
16+
use_psram: false
17+
type: !remove
18+
variant: !remove
19+
...

.test/common_idf53.yaml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
packages:
3+
common_idf: !include common_idf.yaml
4+
5+
esp32:
6+
framework:
7+
type: esp-idf
8+
version: 5.3.1
9+
platform_version: 6.9.0
10+
...

.test/esphome_ard_basic.yaml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,6 @@
11
---
22
packages:
3+
common_arduino: !include common_ard.yaml
34
core_package: !include ../ESPHome/TX-Ultimate-Easy-ESPHome_core.yaml
45
standard_package: !include ../ESPHome/TX-Ultimate-Easy-ESPHome_standard.yaml
5-
6-
esp32:
7-
framework:
8-
type: arduino
9-
10-
wifi:
11-
ssid: !secret wifi_ssid
12-
password: !secret wifi_password
136
...

.test/esphome_ard_ble_proxy.yaml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,7 @@
11
---
22
packages:
3+
common_arduino: !include common_ard.yaml
34
core_package: !include ../ESPHome/TX-Ultimate-Easy-ESPHome_core.yaml
45
standard_package: !include ../ESPHome/TX-Ultimate-Easy-ESPHome_standard.yaml
56
addon_bluetooth_proxy: !include ../ESPHome/TX-Ultimate-Easy-ESPHome_addon_ble_proxy.yaml
6-
7-
esp32:
8-
framework:
9-
type: arduino
10-
11-
wifi:
12-
ssid: !secret wifi_ssid
13-
password: !secret wifi_password
147
...

.test/esphome_ard_core.yaml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,5 @@
11
---
22
packages:
3+
common_arduino: !include common_ard.yaml
34
core_package: !include ../ESPHome/TX-Ultimate-Easy-ESPHome_core.yaml
4-
5-
esp32:
6-
framework:
7-
type: arduino
8-
9-
wifi:
10-
ssid: !secret wifi_ssid
11-
password: !secret wifi_password
125
...

.test/esphome_ard_hw_relays.yaml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,6 @@
11
---
22
packages:
3+
common_arduino: !include common_ard.yaml
34
core_package: !include ../ESPHome/TX-Ultimate-Easy-ESPHome_core.yaml
45
standard_hw_relays_package: !include ../ESPHome/TX-Ultimate-Easy-ESPHome_standard_hw_relays.yaml
5-
6-
esp32:
7-
framework:
8-
type: arduino
9-
10-
wifi:
11-
ssid: !secret wifi_ssid
12-
password: !secret wifi_password
136
...

0 commit comments

Comments
 (0)