Good morning,
I built one smart speaker in this way :
- hardware :
- a Raspberry Pi 5
- a Seedstudio ReSpeaker 2Mic HAT
- software :
- I applied this tutorial https://github.com/rhasspy/wyoming-satellite/blob/13bb0249310391bb7b7f6e109ddcc0d7d76223c1/docs/tutorial_2mic.md
- and also this tutorial https://github.com/FutureProofHomes/wyoming-enhancements/tree/master/snapcast/docs without OpenAI and sensors / controls
- I installed Music Assistant server inside Home Assistant version 2.4.4
My Assist configuration in Home Assistant is faster whisper + piper.
I also created some automations for the doorbell like this :
alias: Campanello Cristina
description: ""
triggers:
- trigger: state
entity_id:
- binary_sensor.centralina_citofono_a16s_input6
from: "off"
to: "on"
conditions: []
actions:
- action: notify.mobile_app_sm_a546b
metadata: {}
data:
message: Qualcuno ha suonato il campanello
title: Campanello !!!
- action: notify.mobile_app_pixel_7_pro
metadata: {}
data:
message: Qualcuno ha suonato il campanello di Cristina
title: Campanello Cristina !!!
- action: notify.mobile_app_m2003j15sc
metadata: {}
data:
message: Qualcuno ha suonato il campanello di Cristina
title: Campanello Cristina !!!
- action: tts.speak
metadata: {}
data:
cache: true
media_player_entity_id: media_player.satellite1
message: Hanno suonato il campanello di Cristina
target:
entity_id: tts.piper
mode: single
All is working fine, but if I make an upgrade for Music Assistant (now the current version must be 2.5.4) the tts.speak stop working.
What is wrong ?