Compare commits
21 Commits
v2024.12.9
...
v2024.12.1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f258b8f783 | ||
|
|
7e055e7737 | ||
|
|
9fec812b66 | ||
|
|
269ba89bd3 | ||
|
|
ae87f025a3 | ||
|
|
303a3f1267 | ||
|
|
a716e8e9cf | ||
|
|
d77d761497 | ||
|
|
ec528ec128 | ||
|
|
4ed98e533f | ||
|
|
1ef73d5cd0 | ||
|
|
420225b6ba | ||
|
|
8996cfbdf8 | ||
|
|
085250c471 | ||
|
|
6230e31323 | ||
|
|
248f7e9cd8 | ||
|
|
6343e6eb4a | ||
|
|
226d5db7c8 | ||
|
|
dbde1da920 | ||
|
|
f2ff037c82 | ||
|
|
82af8b6687 |
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"
|
||||
|
||||
@@ -11,6 +11,27 @@
|
||||
##### - For normal system use, modifications to this file are NOT required. #####
|
||||
####################################################################################################
|
||||
---
|
||||
substitutions:
|
||||
# RTTTL format: name:d=duration,o=octave,b=tempo:notes
|
||||
# d=32 (32nd note), o=5 (octave 5), b=100 (tempo 100)
|
||||
tone_volume_change: "scale_up:d=32,o=5,b=100:c,c#,d#,e,f#,g#,a#,b" # Use "none" to disable sound
|
||||
|
||||
api:
|
||||
actions:
|
||||
- action: rtttl_play
|
||||
variables:
|
||||
# The RTTTL string for the melody to be played.
|
||||
# It should follow the RTTTL format, including the melody's name,
|
||||
# default settings, and a sequence of notes.
|
||||
tone: string
|
||||
then:
|
||||
- lambda: |-
|
||||
rtttl_speaker->stop();
|
||||
if (rtttl_speaker_gain->state > 0) {
|
||||
ESP_LOGI("api", "Play tone: '%s'", tone.c_str());
|
||||
rtttl_speaker->play(tone.c_str());
|
||||
}
|
||||
|
||||
bluetooth_proxy:
|
||||
|
||||
esp32:
|
||||
@@ -33,17 +54,54 @@ esphome:
|
||||
build_flags:
|
||||
- -D TX_ULTIMATE_EASY_ADDON_BLE_PROXY
|
||||
|
||||
i2s_audio: !remove
|
||||
|
||||
light:
|
||||
- id: !extend light_full
|
||||
platform: esp32_rmt_led_strip
|
||||
rgb_order: GRB
|
||||
rmt_channel: 0
|
||||
rmt_channel: 1
|
||||
chipset: ws2812
|
||||
type: !remove
|
||||
variant: !remove
|
||||
max_refresh_rate: 33ms
|
||||
use_psram: true
|
||||
|
||||
media_player: !remove
|
||||
|
||||
number:
|
||||
- id: rtttl_speaker_gain
|
||||
name: Sound - Volume
|
||||
platform: template
|
||||
max_value: 100
|
||||
min_value: 0
|
||||
step: 1
|
||||
initial_value: 100
|
||||
unit_of_measurement: "%"
|
||||
internal: false
|
||||
disabled_by_default: true
|
||||
entity_category: config
|
||||
device_class: sound_pressure
|
||||
restore_value: true
|
||||
optimistic: true
|
||||
set_action:
|
||||
then:
|
||||
- lambda: |-
|
||||
rtttl_speaker->set_gain((100-(x/10.0f))/100.0f);
|
||||
std::string tone_volume_change = "${tone_volume_change}";
|
||||
// Play sound if tone_volume_change is not "none"
|
||||
if (x > 0 and !tone_volume_change.empty() and tone_volume_change != "none")
|
||||
rtttl_speaker->play(tone_volume_change);
|
||||
rtttl_speaker->dump_config();
|
||||
|
||||
rtttl:
|
||||
- id: rtttl_speaker
|
||||
speaker: mp_speaker
|
||||
|
||||
speaker:
|
||||
- id: mp_speaker
|
||||
platform: i2s_audio
|
||||
dac_type: external
|
||||
i2s_dout_pin: GPIO15
|
||||
i2s_audio_id: if_i2s_audio
|
||||
i2s_comm_fmt: stand_msb
|
||||
channel: mono
|
||||
...
|
||||
|
||||
@@ -85,6 +85,8 @@ ota:
|
||||
platform: esphome
|
||||
|
||||
psram:
|
||||
mode: octal
|
||||
speed: 40MHz
|
||||
|
||||
script:
|
||||
- id: api_send_ha_event_boot
|
||||
|
||||
@@ -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
|
||||
@@ -635,8 +644,8 @@ light:
|
||||
<<: *light_partition_relays
|
||||
segments:
|
||||
- id: light_full
|
||||
from: 17
|
||||
to: 18
|
||||
from: 16
|
||||
to: 17
|
||||
- id: light_us_rl_3_3_right
|
||||
name: Light - Relay 3 of 3 (right)
|
||||
<<: *light_partition_relays
|
||||
@@ -649,8 +658,8 @@ light:
|
||||
<<: *light_partition_relays
|
||||
segments:
|
||||
- id: light_full
|
||||
from: 12
|
||||
to: 12
|
||||
from: 23
|
||||
to: 24
|
||||
- id: light_us_rl_1_4_right
|
||||
name: Light - Relay 1 of 4 (right)
|
||||
<<: *light_partition_relays
|
||||
@@ -658,48 +667,51 @@ light:
|
||||
- id: light_full
|
||||
from: 31
|
||||
to: 31
|
||||
- id: light_full
|
||||
from: 0
|
||||
to: 0
|
||||
- id: light_us_rl_2_4_left
|
||||
name: Light - Relay 2 of 4 (left)
|
||||
<<: *light_partition_relays
|
||||
segments:
|
||||
- id: light_full
|
||||
from: 24
|
||||
to: 24
|
||||
from: 21
|
||||
to: 22
|
||||
- id: light_us_rl_2_4_right
|
||||
name: Light - Relay 2 of 4 (right)
|
||||
<<: *light_partition_relays
|
||||
segments:
|
||||
- id: light_full
|
||||
from: 2
|
||||
from: 1
|
||||
to: 2
|
||||
- id: light_us_rl_3_4_left
|
||||
name: Light - Relay 3 of 4 (left)
|
||||
<<: *light_partition_relays
|
||||
segments:
|
||||
- id: light_full
|
||||
from: 21
|
||||
to: 21
|
||||
from: 17
|
||||
to: 18
|
||||
- id: light_us_rl_3_4_right
|
||||
name: Light - Relay 3 of 4 (right)
|
||||
<<: *light_partition_relays
|
||||
segments:
|
||||
- id: light_full
|
||||
from: 4
|
||||
to: 4
|
||||
from: 5
|
||||
to: 6
|
||||
- id: light_us_rl_4_4_left
|
||||
name: Light - Relay 4 of 4 (left)
|
||||
<<: *light_partition_relays
|
||||
segments:
|
||||
- id: light_full
|
||||
from: 19
|
||||
to: 19
|
||||
from: 15
|
||||
to: 16
|
||||
- id: light_us_rl_4_4_right
|
||||
name: Light - Relay 4 of 4 (right)
|
||||
<<: *light_partition_relays
|
||||
segments:
|
||||
- id: light_full
|
||||
from: 7
|
||||
to: 7
|
||||
to: 8
|
||||
|
||||
script:
|
||||
- id: !extend boot_initialize
|
||||
|
||||
@@ -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:
|
||||
@@ -189,22 +191,55 @@ script:
|
||||
}
|
||||
|
||||
// Toggle relay if corresponding button action is enabled
|
||||
ESP_LOGVV("core_hw_relays", "Toggle relays: (${BUTTON_ACTION_NONE_TEXT})");
|
||||
ESP_LOGVV("core_hw_relays", " Relay 1: %s (%s)",
|
||||
YESNO(sl_button_1_action->state != "${BUTTON_ACTION_NONE_TEXT}"),
|
||||
sl_button_1_action->state.c_str());
|
||||
ESP_LOGVV("core_hw_relays", " Relay 2: %s (%s)",
|
||||
YESNO(sl_button_2_action->state != "${BUTTON_ACTION_NONE_TEXT}"),
|
||||
sl_button_2_action->state.c_str());
|
||||
ESP_LOGVV("core_hw_relays", " Relay 3: %s (%s)",
|
||||
YESNO(sl_button_3_action->state != "${BUTTON_ACTION_NONE_TEXT}"),
|
||||
sl_button_3_action->state.c_str());
|
||||
ESP_LOGVV("core_hw_relays", " Relay 4: %s (%s)",
|
||||
YESNO(sl_button_4_action->state != "${BUTTON_ACTION_NONE_TEXT}"),
|
||||
sl_button_4_action->state.c_str());
|
||||
switch (button) {
|
||||
case ${BUTTON_1_ID}:
|
||||
if (sl_button_1_action->state != "${RELAY_MODE_TEXT_NOT_USED}")
|
||||
if (sl_button_1_action->state != "${BUTTON_ACTION_NONE_TEXT}") {
|
||||
ESP_LOGV("core_hw_relays", "Toggle relay 1: (%s)", sl_button_1_action->state.c_str());
|
||||
sw_relay_1->toggle();
|
||||
} else {
|
||||
ESP_LOGV("core_hw_relays", "Ignoring toggle for relay 1: action is '%s'",
|
||||
sl_button_1_action->state.c_str());
|
||||
}
|
||||
break;
|
||||
case ${BUTTON_2_ID}:
|
||||
if (sl_button_2_action->state != "${RELAY_MODE_TEXT_NOT_USED}")
|
||||
if (sl_button_2_action->state != "${BUTTON_ACTION_NONE_TEXT}") {
|
||||
ESP_LOGV("core_hw_relays", "Toggle relay 2: (%s)", sl_button_2_action->state.c_str());
|
||||
sw_relay_2->toggle();
|
||||
} else {
|
||||
ESP_LOGV("core_hw_relays", "Ignoring toggle for relay 2: action is '%s'",
|
||||
sl_button_2_action->state.c_str());
|
||||
}
|
||||
break;
|
||||
case ${BUTTON_3_ID}:
|
||||
if (sl_button_3_action->state != "${RELAY_MODE_TEXT_NOT_USED}")
|
||||
if (sl_button_3_action->state != "${BUTTON_ACTION_NONE_TEXT}") {
|
||||
ESP_LOGV("core_hw_relays", "Toggle relay 3: (%s)", sl_button_3_action->state.c_str());
|
||||
sw_relay_3->toggle();
|
||||
} else {
|
||||
ESP_LOGV("core_hw_relays", "Ignoring toggle for relay 3: action is '%s'",
|
||||
sl_button_3_action->state.c_str());
|
||||
}
|
||||
break;
|
||||
case ${BUTTON_4_ID}:
|
||||
if (sl_button_4_action->state != "${RELAY_MODE_TEXT_NOT_USED}")
|
||||
if (sl_button_4_action->state != "${BUTTON_ACTION_NONE_TEXT}") {
|
||||
ESP_LOGV("core_hw_relays", "Toggle relay 4: (%s)", sl_button_4_action->state.c_str());
|
||||
sw_relay_4->toggle();
|
||||
} else {
|
||||
ESP_LOGV("core_hw_relays", "Ignoring toggle for relay 4: action is '%s'",
|
||||
sl_button_4_action->state.c_str());
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
@@ -316,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:
|
||||
@@ -339,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:
|
||||
@@ -362,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:
|
||||
@@ -385,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:
|
||||
|
||||
@@ -19,11 +19,11 @@ i2s_audio:
|
||||
media_player:
|
||||
- id: mp_speaker
|
||||
name: Speaker
|
||||
internal: false
|
||||
platform: i2s_audio
|
||||
i2s_dout_pin: GPIO15
|
||||
i2s_audio_id: if_i2s_audio
|
||||
i2s_comm_fmt: lsb
|
||||
i2s_comm_fmt: msb # Experimental - It was 'lsb' until v2024.12.12
|
||||
dac_type: external
|
||||
mode: mono
|
||||
internal: false
|
||||
...
|
||||
|
||||
@@ -1 +1 @@
|
||||
2024.12.9
|
||||
2024.12.14
|
||||
|
||||
@@ -1 +1 @@
|
||||
version: 2024.12.9
|
||||
version: 2024.12.14
|
||||
|
||||
Reference in New Issue
Block a user