Hi,
Is there any way to change the brightness on an Echo Spot using the Alexa Media Player?
thanks in advance!
see
Another thing you can do is remove alexa_media_player from configuration.yaml and add it back via the Integrations flow. This is a bit of a hassle as you have to manually disable unwanted devices and entities but seems to be the way the HA developers want components to behave moving forward.
Could I please have some guidance to get room temperatures read out by the echo dots?
I’ve taken a look at the automation examples on alexa_media_player github but the examples are for lights only.
Can someone walk me through how I would change this to temperature?
I would like to ask my echo… “alexa, what is my living room temperature” and have it read out the living room temperature sensor.
That’s what I dis:
question_outside_temperature:
sequence:
- service: alexa_media.update_last_called
- delay: '00:00:01'
- service: notify.alexa_media
data_template:
target: '{{ states.sensor.last_called_alexa.state }}'
data:
type: tts
message: >
The outside temperatur in the gardes is {{ states.sensor.outside_temperature.state |int |round(0) }} Grad.
{% if states.sensor.yr_forecast_precipitation.state | int == 0 %}
No rain in sight
{% elif states.sensor.yr_forecast_precipitation.state | int > 0 and states.sensor.yr_forecast_precipitation.state | int < 1 %}
slightly rain is expected
{% else %}
Heavy rain is expected
{% endif %}
Export the script in the alexa section of configuration.yaml
Create a routine in alexa
Hi all, I have been using the alexa “type: tts” for while. I want to use “type: announce”, but can’t get it to work. Should it be as simple as replacing “tts” with “announce” or is there something else that needs changing?
Hi Jorg,
Thank you for the example and used your setup to get everything setup. I also didn’t realise you needed to create a routine in the alexa app that pointed to the script (emulated hue light).
All works now for my house temperature and garage door sensor
Great to read that I could help
No, you just have to replace
Sorry if this has been asked already but is there anyway to get Alexa to respond only on the echo you are prompting?
Currently in my scripts specify each echo dot.
If I ask the about temperature… the tts response is across all devices I have specified.
What I would prefer is to ask “Alexa, what is the kids bedroom temperature” when im in the kids room (with their echo dot) and not have it play the response on every echo dot in the house.
only a few posts above I posted the solution:
the sensor update_last_called is the way.
- service: alexa_media.update_last_called
- delay: '00:00:01'
- service: notify.alexa_media
data_template:
target: '{{ states.sensor.last_called_alexa.state }}'
data:
type: tts
message: >
Thanks Joerg. It just won’t work using “announce”. She stays silent!
Here works:
action:
- service: notify.alexa_media
data_template:
data:
type: announce
target:
- media_player.echo_salotto
message: >
....
I’ve got it now. Announcements were disabled in the Alexa App!
same question from me. Is the feature Online status of devices enough to get the embedded temperature sensor of Amazon Echo Plus?
Hey there , after a complete loss of my hassio config , i am trying to get everything working again… I searched true the hacs integration for Alexa media , and i find it , just no option enabled to hit install… The install button is grey (not available). Should i install manualy again?
i have excluded some devices when I set up this add on, in the integrations setup, is there a way to remove the exclusions with out uninstall and reinstall?
Oh, that’s something new for me. Where can announcements be disabled?
I have done this with a little script. If you want to use this PM me.