Compare commits
9 Commits
v2024.12.1
...
v2024.12.1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ec528ec128 | ||
|
|
4ed98e533f | ||
|
|
1ef73d5cd0 | ||
|
|
420225b6ba | ||
|
|
8996cfbdf8 | ||
|
|
085250c471 | ||
|
|
6230e31323 | ||
|
|
248f7e9cd8 | ||
|
|
6343e6eb4a |
8
.github/workflows/validate_esphome.yml
vendored
8
.github/workflows/validate_esphome.yml
vendored
@@ -1,8 +1,7 @@
|
||||
---
|
||||
name: Validate ESPHome
|
||||
name: Validate ESPHome (Latest)
|
||||
|
||||
# yamllint disable-line rule:truthy
|
||||
on:
|
||||
on: # yamllint disable-line rule:truthy
|
||||
workflow_dispatch:
|
||||
|
||||
concurrency:
|
||||
@@ -37,6 +36,7 @@ jobs:
|
||||
uses: esphome/build-action@main
|
||||
with:
|
||||
yaml-file: ".test/esphome_ard_basic.yaml"
|
||||
version: latest
|
||||
|
||||
build_bluetooth_proxy_4:
|
||||
name: Bluetooth Proxy (IDF)
|
||||
@@ -47,6 +47,7 @@ jobs:
|
||||
uses: esphome/build-action@main
|
||||
with:
|
||||
yaml-file: ".test/esphome_idf_bluetooth_proxy.yaml"
|
||||
version: latest
|
||||
|
||||
build_bluetooth_proxy_53:
|
||||
name: Bluetooth Proxy (IDF v5.3)
|
||||
@@ -57,4 +58,5 @@ jobs:
|
||||
uses: esphome/build-action@main
|
||||
with:
|
||||
yaml-file: ".test/esphome_idf53_bluetooth_proxy.yaml"
|
||||
version: latest
|
||||
...
|
||||
|
||||
2
.github/workflows/validate_esphome_beta.yml
vendored
2
.github/workflows/validate_esphome_beta.yml
vendored
@@ -11,6 +11,8 @@ on: # yamllint disable-line rule:truthy
|
||||
- "*.c"
|
||||
- "*.cpp"
|
||||
- "*.py"
|
||||
branches:
|
||||
- main
|
||||
pull_request:
|
||||
paths:
|
||||
- "*.yaml"
|
||||
|
||||
@@ -25,6 +25,11 @@ substitutions:
|
||||
LIGHT_TRANSITION_TURN_OFF: '0' # Transition time in msec
|
||||
LIGHT_BRIGHTNESS_TURN_ON: '0' # Brightness (1 to 100%, 0 to not set it)
|
||||
|
||||
LIGHT_FULL_RESTORE_MODE: RESTORE_DEFAULT_OFF
|
||||
LIGHT_SIDES_RESTORE_MODE: RESTORE_DEFAULT_OFF
|
||||
LIGHT_INDIVIDUAL_RESTORE_MODE: RESTORE_DEFAULT_OFF
|
||||
LIGHT_RELAYS_RESTORE_MODE: RESTORE_DEFAULT_OFF
|
||||
|
||||
globals:
|
||||
- id: gb_lights_1
|
||||
type: std::vector<light::LightState*>
|
||||
@@ -44,6 +49,7 @@ light:
|
||||
# method: esp32_rmt
|
||||
num_leds: 32
|
||||
pin: GPIO13
|
||||
restore_mode: ${LIGHT_FULL_RESTORE_MODE}
|
||||
|
||||
# Those lights are available based on the model selections
|
||||
- &light_partition_with_effects
|
||||
@@ -52,6 +58,7 @@ light:
|
||||
platform: partition
|
||||
default_transition_length: ${default_transition_length}
|
||||
internal: true
|
||||
restore_mode: ${LIGHT_SIDES_RESTORE_MODE}
|
||||
effects:
|
||||
- addressable_rainbow:
|
||||
name: "Rainbow"
|
||||
@@ -184,6 +191,7 @@ light:
|
||||
platform: partition
|
||||
disabled_by_default: true
|
||||
default_transition_length: ${default_transition_length}
|
||||
restore_mode: ${LIGHT_INDIVIDUAL_RESTORE_MODE}
|
||||
segments:
|
||||
- id: light_full
|
||||
from: 0
|
||||
@@ -417,6 +425,7 @@ light:
|
||||
platform: partition
|
||||
internal: true
|
||||
default_transition_length: ${default_transition_length}
|
||||
restore_mode: ${LIGHT_RELAYS_RESTORE_MODE}
|
||||
segments:
|
||||
- id: light_full
|
||||
from: 9
|
||||
|
||||
@@ -15,6 +15,7 @@ substitutions:
|
||||
RELAY_MODE_TEXT_SWITCH: "Switch"
|
||||
RELAY_MODE_TEXT_LIGHT: "Light"
|
||||
RELAY_MODE_TEXT_NOT_USED: "Not in use"
|
||||
RELAY_RESTORE_MODE: RESTORE_DEFAULT_OFF
|
||||
|
||||
globals:
|
||||
- id: boot_initialization_relays
|
||||
@@ -29,6 +30,7 @@ light:
|
||||
output: output_relay_1
|
||||
platform: binary
|
||||
internal: true
|
||||
restore_mode: ${RELAY_RESTORE_MODE}
|
||||
on_turn_on:
|
||||
then:
|
||||
- if:
|
||||
@@ -349,7 +351,7 @@ switch:
|
||||
name: Relay 1
|
||||
output: output_relay_1
|
||||
platform: output
|
||||
restore_mode: RESTORE_DEFAULT_OFF
|
||||
restore_mode: ${RELAY_RESTORE_MODE}
|
||||
internal: true
|
||||
on_turn_on:
|
||||
then:
|
||||
@@ -372,7 +374,7 @@ switch:
|
||||
name: Relay 2
|
||||
output: output_relay_2
|
||||
platform: output
|
||||
restore_mode: RESTORE_DEFAULT_OFF
|
||||
restore_mode: ${RELAY_RESTORE_MODE}
|
||||
internal: true
|
||||
on_turn_on:
|
||||
then:
|
||||
@@ -395,7 +397,7 @@ switch:
|
||||
name: Relay 3
|
||||
output: output_relay_3
|
||||
platform: output
|
||||
restore_mode: RESTORE_DEFAULT_OFF
|
||||
restore_mode: ${RELAY_RESTORE_MODE}
|
||||
internal: true
|
||||
on_turn_on:
|
||||
then:
|
||||
@@ -418,7 +420,7 @@ switch:
|
||||
name: Relay 4
|
||||
output: output_relay_4
|
||||
platform: output
|
||||
restore_mode: RESTORE_DEFAULT_OFF
|
||||
restore_mode: ${RELAY_RESTORE_MODE}
|
||||
internal: true
|
||||
on_turn_on:
|
||||
then:
|
||||
|
||||
@@ -1 +1 @@
|
||||
2024.12.10
|
||||
2024.12.12
|
||||
|
||||
@@ -1 +1 @@
|
||||
version: 2024.12.10
|
||||
version: 2024.12.12
|
||||
|
||||
Reference in New Issue
Block a user