The config files for my esphome devices
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

201 lines
5.3 KiB

substitutions:
hostname: office-atom-echo
friendly_name: Office Speaker
packages:
base: !include common/base.yaml
sensors: !include common/basicSensors.yaml
esphome:
name: ${hostname}
build_path: ./build/${hostname}
friendly_name: ${friendly_name}
wifi:
use_address: 192.168.10.28
esp32:
board: m5stack-atom
improv_serial:
i2s_audio:
i2s_lrclk_pin: GPIO33
i2s_bclk_pin: GPIO19
#microphone:
# - platform: i2s_audio
# id: echo_microphone
# i2s_din_pin: GPIO23
# adc_type: external
# pdm: true
speaker:
- platform: i2s_audio
id: echo_speaker
i2s_dout_pin: GPIO22
dac_type: external
mode: mono
media_player:
- platform: i2s_audio
id: echo_media
name: None
dac_type: external
i2s_dout_pin: GPIO22
#voice_assistant:
# id: va
# microphone: echo_microphone
# speaker: echo_speaker
# noise_suppression_level: 2
# auto_gain: 31dBFS
# volume_multiplier: 2.0
# vad_threshold: 3
# on_listening:
# - light.turn_on:
# id: led
# blue: 100%
# red: 0%
# green: 0%
# brightness: 100%
# effect: pulse
# on_tts_start:
# - light.turn_on:
# id: led
# blue: 0%
# red: 0%
# green: 100%
# brightness: 100%
# effect: pulse
# on_end:
# - delay: 100ms
# - wait_until:
# not:
# speaker.is_playing:
# - script.execute: reset_led
# on_error:
# - light.turn_on:
# id: led
# blue: 0%
# red: 100%
# green: 0%
# brightness: 100%
# effect: none
# - delay: 1s
# - script.execute: reset_led
#
# on_client_connected:
# - if:
# condition:
# switch.is_on: use_wake_word
# then:
# - voice_assistant.start_continuous:
# - script.execute: reset_led
# on_client_disconnected:
# - if:
# condition:
# switch.is_on: use_wake_word
# then:
# - voice_assistant.stop:
# - light.turn_off: led
binary_sensor:
- platform: gpio
pin:
number: GPIO39
inverted: true
name: Button
id: echo_button
#on_click:
# - if:
# condition:
# switch.is_off: use_wake_word
# then:
# - if:
# condition: voice_assistant.is_running
# then:
# - voice_assistant.stop:
# - script.execute: reset_led
# else:
# - voice_assistant.start:
# else:
# - voice_assistant.stop
# - delay: 1s
# - script.execute: reset_led
# - script.wait: reset_led
# - voice_assistant.start_continuous:
light:
- platform: esp32_rmt_led_strip
id: led
name: light
entity_category: config
pin: GPIO27
default_transition_length: 0s
chipset: SK6812
num_leds: 1
rgb_order: grb
rmt_channel: 0
effects:
- pulse:
transition_length: 250ms
update_interval: 250ms
#script:
# - id: reset_led
# then:
# - if:
# condition:
# - switch.is_on: use_wake_word
# - switch.is_on: use_listen_light
# then:
# - light.turn_on:
# id: led
# blue: 100%
# red: 100%
# green: 0%
# brightness: 100%
# effect: none
# else:
# - light.turn_off: led
#switch:
# - platform: template
# name: Use wake word
# id: use_wake_word
# optimistic: true
# restore_mode: RESTORE_DEFAULT_ON
# entity_category: config
# on_turn_on:
# - lambda: id(va).set_use_wake_word(true);
# - if:
# condition:
# not:
# - voice_assistant.is_running
# then:
# - voice_assistant.start_continuous
# - script.execute: reset_led
# on_turn_off:
# - voice_assistant.stop
# - lambda: id(va).set_use_wake_word(false);
# - script.execute: reset_led
# - platform: template
# name: Use Listen Light
# id: use_listen_light
# optimistic: true
# restore_mode: RESTORE_DEFAULT_ON
# entity_category: config
# on_turn_on:
# - script.execute: reset_led
# on_turn_off:
# - script.execute: reset_led
#
#external_components:
# - source: github://pr#5230
# components:
# - esp_adf
# refresh: 0s
#esp_adf: