Echo Devices (Alexa) as Media Player - Testers Needed

Correct. The sources list attribute only lists sources now. Maybe we can expose all BT products with something else.

I didn’t need to use groups at all… My problem was so dumb… I had the notify entry commented out…

1 Like

Hi. I tried to upgrade from 1.4.1 to 2.3.0 via HACS.

  1. Upgrade
  2. Restart HA
  3. Still 1.4.1 is active :slight_smile:
  4. The second try, I had to enter the captcha. but still 1.4.1

What’s missing?

I believe, the component learned, that I rolled back once and now says: “You had your chance guy. No more updates for you” :joy:

  1. Uninstall from HACS.
  2. Check your custom_components directory and delete alexa_media if still there.
  3. Reinstall from HACS.

What I did:
1 Uninstall from HACS
2 No entry in the components directory found
3 restart - Error alexa_media could not be set up - ok because still in configuration.yaml
4 open HACS and found 2.3.0 to install - installed
5 after installation, the 1.4.1 was installed
6 restart - it works but it is still 1.4.1

Tried it twice - no success

ok, I already managed the update.

  1. tried to install 2.2.1 - got the message that 2.2.1 ist not allowed with HACS
  2. Tried then again 2.3.0 - worked.
  3. Restart - everythoing workes so far. No delete of .pickle or anything else was necessary.

Since 2.3 the state of my Alexa devices do not update reliably at all. They do occasionally report state changes but always then stops after a while

How can I debug this?

Hi,

I played a bit around with these new sensors to detect my alarm and timer settings. I have some questions regarding that.

Can it be that a re-occuring daily alerts, which has next alert tomorrow, are not reflected within the corresponding sensor?

The payload stays at None and the vector is also not having that entry.

It works for short term timers as it should. But for regular alarms it does not work so far.

My goal is to use node-red to get triggered whenever an alarm is active. This will than turn on a light with a transition time. For timers it will flash the lights.

Lukas

Probably this relies to
https://github.com/custom-components/alexa_media_player/issues/402
because my alarms are always music based.

I checked what the alexa API returns to me:

{ 
         "alarmTime":1570492800000,
         "automationId":null,
         "createdDate":1566161227556,
         "deferredAtTime":null,
         "deviceSerialNumber":"G0911B0592570RSA",
         "deviceType":"A4ZP7ZC4PI6TO",
         "extensibleAttribute":null,
         "geoLocationTriggerData":null,
         "id":"A4ZP7ZC4PI6TO-G0911B0592570RSA-d9c2e5f1-bc6c-35d9-92b2-f0db02cb8fac",
         "lastOccurrenceTimeInMilli":0,
         "lastUpdatedDate":0,
         "musicAlarmId":"44e75781-ec66-4da7-baac-e0844a376220",
         "musicEntity":"Klaviermusik",
         "notificationIndex":"d9c2e5f1-bc6c-35d9-92b2-f0db02cb8fac",
         "originalDate":"2019-10-08",
         "originalTime":"06:45:00.000",
         "personProfile":null,
         "provider":"Amazon Music",
         "rRuleData":null,
         "recurrenceEligibility":false,
         "recurringPattern":"XXXX-WD",
         "remainingTime":0,
         "reminderAppLabel":null,
         "reminderLabel":null,
         "reminderSubLabel":null,
         "skillInfo":null,
         "snoozedToTime":null,
         "sound":{ 
            "displayName":"Simple Alarm",
            "folder":null,
            "id":"system_alerts_melodic_01",
            "providerId":"ECHO",
            "sampleUrl":"https://s3.amazonaws.com/deeappservice.prod.notificationtones/system_alerts_melodic_01.mp3"
         },
         "status":"ON",
         "targetPersonProfiles":null,
         "timeZoneId":null,
         "timerLabel":null,
         "tmwNotificationProperties":null,
         "triggerTime":0,
         "type":"MusicAlarm",
         "version":"182"
      }

hope this helps

Hi all,

Does anyone have an idea how I can ask a specific Alexa a question and then play a TTS notification back to that specific Alexa?

I can see how I can make a routine to call a script and then have that script play a notification, but I don’t know how I can tell which alexa was used to call the script. Any idea how this can be done? Or is it just impossible and I have to play the response out on all alexas since I don’t know which one was used?

This is what I have been doing for a while and it still works great.

2 Likes

That’s pretty nice, I may try that for a humidity sensor I have :slight_smile:

1 Like

It’s probably a disconnect we weren’t handling properly. Fix is staged.

Thanks, fix should be staged if you want to test it. You may also want the timezone fix.

Oh cool. You are super fast!
How can I easiest use these two fixes? I am using HACS right now, but have no issue in accessing the terminal and doing what is needed there.

the FireTV and FireTV stick components the Entity was shown in the integration but not the right state, the device is always in the state standby. i have activatet on the Fire TV device the ADB debugging. is it pricipiel possible to show the right state for this devie type? that would be greate but i use the state of tv devices (in the living room for excample i stop the mediaplay of the echo if my LG webOS TV change from off to playing) to activate/deaktivate mediaplay on the echos.

I downloaded the changed files within the command line now and restarted the system.
I directly saw, that the MusicAlarm is now visible within the sensor and my node-red workflow also got triggered. So I think it is working now. I will have a final test tomorrow morning, when the alarm has its time to awake me. Interessting are the different state changes I would get there.
<TIME DAY1><NONE><TIME DAY2>
or
<TIME DAY1><TIME DAY2>
I will let you know.

for a better unterstanding of this scenario attached my automation for my livingroom. But in the sleepingroom i have no webOS Device, so i would use the ‘playing’ state of the FireTV. By the way if anyone would use this as exsample for automation based on the echo Alexa Media Player or have any suggestions.

The condition check of the curent state of the Echo status i use but othewise on every motion in the livingroom the Echo have a short pause and change the volume and the radio channel again :wink:

#############################################################
# Livingroom Radio on by motion dedection 
#############################################################
- id: motion-sensor-wohnzimmer-radio-on
  alias: Bewegungssensor Wohnzimmer Radio an
  trigger:
    platform: state
    entity_id: binary_sensor.aeotec_zw100_wohnzimmer_sensor
    from: "off"
    to: "on"
  condition:
    - condition: and
      conditions: 
    - condition: time
      after: '07:00:00'
      before: '21:00:00'
    - condition: state
      entity_id: media_player.wohnzimmer
      state: 'off'
    - condition: or
      conditions:
      - condition: state
        entity_id: media_player.wohnzimmer_2
        state: 'standby'
      - condition: state
        entity_id: media_player.wohnzimmer_2
        state: 'paused'
  action:
    - service: media_player.volume_set
      data: 
        entity_id: media_player.wohnzimmer_2
        volume_level: 0.3
    - service: media_player.play_media
      data:
        entity_id: media_player.wohnzimmer_2
        media_content_id: ndr zwei
        media_content_type: TUNEIN
    - service: media_player.media_play
      entity_id: media_player.wohnzimmer_2

#############################################################
# Livingroom Radio off if TV change to on 
#############################################################
- id: tv-wohnzimmer-on-radio-off
  alias: Fernsehr an Wohnzimmer Radio aus
  trigger:
    platform: state
    entity_id: media_player.wohnzimmer
    from: "off"
    to: "playing"
  action:
   - service: media_player.media_pause
     entity_id: media_player.wohnzimmer_2

#############################################################
# Livingroom Radio on if TV change status to off 
#############################################################
- id: tv-wohnzimmer-off-radio-on
  alias: Fernsehr aus Wohnzimmer Radio an
  trigger:
    platform: state
    entity_id: media_player.wohnzimmer
    from: "playing"
    to: "off"
  condition:
    - condition: and
      conditions: 
    - condition: time
      after: '07:00:00'
      before: '21:00:00'
  action:
    - service: media_player.volume_set
      data: 
        entity_id: media_player.wohnzimmer_2
        volume_level: 0.3
    - service: media_player.play_media
      data:
        entity_id: media_player.wohnzimmer_2
        media_content_id: ndr zwei
        media_content_type: TUNEIN
    - service: media_player.media_play
      entity_id: media_player.wohnzimmer_2
1 Like

Aha, so there is a “last_called” attribute of the media player will contain the last Alexa which made a request? That’s perfect. Don’t know how I missed that, I did read the docs, but didn’t see that examples page.

Hi,
by the way.
Is it really necessary to have such a huge description for a next_timer entity?

recurrence: null
total_active: 0
total_all: 15
sorted_active: []
sorted_all: [[“0c362bdf-a2f9-3203-800e-305cd6efa279”, {“alarmTime”: 0, “automationId”: null, “createdDate”: 1570349926900, “deferredAtTime”: null, “deliveryType”: null, “deviceSerialNumber”: “G2A0RF0483620129”, “deviceType”: “A7WXQPH584YP”, “extensibleAttribute”: null, “geoLocationTriggerData”: null, “id”: “A7WXQPH584YP-G2A0RF0483620129-0c362bdf-a2f9-3203-800e-305cd6efa279”, “lastOccurrenceTimeInMilli”: 0, “lastUpdatedDate”: 0, “musicAlarmId”: null, “musicEntity”: null, “notificationIndex”: “0c362bdf-a2f9-3203-800e-305cd6efa279”, “originalDate”: null, “originalTime”: null, “personProfile”: null, “provider”: null, “rRuleData”: null, “recurrenceEligibility”: false, “recurringPattern”: null, “remainingTime”: 0, “reminderAppLabel”: null, “reminderLabel”: null, “reminderSubLabel”: null, “skillInfo”: null, “snoozedToTime”: null, “sound”: {“displayName”: “Simple Timer”, “folder”: null, “id”: “system_alerts_melodic_02”, “providerId”: “ECHO”, “sampleUrl”: “https://s3.amazonaws.com/deeappservice.prod.notificationtones/system_alerts_melodic_02.mp3”}, “status”: “OFF”, “targetPersonProfiles”: null, “timeZoneId”: null, “timerLabel”: null, “tmwNotificationProperties”: null, “triggerTime”: 0, “type”: “Timer”, “version”: “4”, “date_time”: “None None”}], [“102ab034-d9a4-3a8e-a314-82b40413be39”, {“alarmTime”: 0, “automationId”: null, “createdDate”: 1570091102595, “deferredAtTime”: null, “deliveryType”: null, “deviceSerialNumber”: “G2A0RF0483620129”, “deviceType”: “A7WXQPH584YP”, “extensibleAttribute”: null, “geoLocationTriggerData”: null, “id”: “A7WXQPH584YP-G2A0RF0483620129-102ab034-d9a4-3a8e-a314-82b40413be39”, “lastOccurrenceTimeInMilli”: 0, “lastUpdatedDate”: 0, “musicAlarmId”: null, “musicEntity”: null, “notificationIndex”: “102ab034-d9a4-3a8e-a314-82b40413be39”, “originalDate”: null, “originalTime”: null, “personProfile”: null, “provider”: null, “rRuleData”: null, “recurrenceEligibility”: false, “recurringPattern”: null, “remainingTime”: 0, “reminderAppLabel”: null, “reminderLabel”: null, “reminderSubLabel”: null, “skillInfo”: null, “snoozedToTime”: null, “sound”: {“displayName”: “Simple Timer”, “folder”: null, “id”: “system_alerts_melodic_02”, “providerId”: “ECHO”, “sampleUrl”: “https://s3.amazonaws.com/deeappservice.prod.notificationtones/system_alerts_melodic_02.mp3”}, “status”: “OFF”, “targetPersonProfiles”: null, “timeZoneId”: null, “timerLabel”: null, “tmwNotificationProperties”: null, “triggerTime”: 0, “type”: “Timer”, “version”: “4”, “date_time”: “None None”}], [“27e0cf3d-742e-3410-b15f-39478ac9eab2”, {“alarmTime”: 0, “automationId”: null, “createdDate”: 1569742801333, “deferredAtTime”: null, “deliveryType”: null, “deviceSerialNumber”: “G2A0RF0483620129”, “deviceType”: “A7WXQPH584YP”, “extensibleAttribute”: null, “geoLocationTriggerData”: null, “id”: “A7WXQPH584YP-G2A0RF0483620129-27e0cf3d-742e-3410-b15f-39478ac9eab2”, “lastOccurrenceTimeInMilli”: 0, “lastUpdatedDate”: 0, “musicAlarmId”: null, “musicEntity”: null, “notificationIndex”: “27e0cf3d-742e-3410-b15f-39478ac9eab2”, “originalDate”: null, “originalTime”: null, “personProfile”: null, “provider”: null, “rRuleData”: null, “recurrenceEligibility”: false, “recurringPattern”: null, “remainingTime”: 0, “reminderAppLabel”: null, “reminderLabel”: null, “reminderSubLabel”: null, “skillInfo”: null, “snoozedToTime”: null, “sound”: {“displayName”: “Simple Timer”, “folder”: null, “id”: “system_alerts_melodic_02”, “providerId”: “ECHO”, “sampleUrl”: “https://s3.amazonaws.com/deeappservice.prod.notificationtones/system_alerts_melodic_02.mp3”}, “status”: “OFF”, “targetPersonProfiles”: null, “timeZoneId”: null, “timerLabel”: null, “tmwNotificationProperties”: null, “triggerTime”: 0, “type”: “Timer”, “version”: “4”, “date_time”: “None None”}], [“460167c4-248b-3501-bbdf-cfe4d3eee3fa”, {“alarmTime”: 0, “automationId”: null, “createdDate”: 1569653713785, “deferredAtTime”: null, “deliveryType”: null, “deviceSerialNumber”: “G2A0RF0483620129”, “deviceType”: “A7WXQPH584YP”, “extensibleAttribute”: null, “geoLocationTriggerData”: null, “id”: “A7WXQPH584YP-G2A0RF0483620129-460167c4-248b-3501-bbdf-cfe4d3eee3fa”, “lastOccurrenceTimeInMilli”: 0, “lastUpdatedDate”: 0, “musicAlarmId”: null, “musicEntity”: null, “notificationIndex”: “460167c4-248b-3501-bbdf-cfe4d3eee3fa”, “originalDate”: null, “originalTime”: null, “personProfile”: null, “provider”: null, “rRuleData”: null, “recurrenceEligibility”: false, “recurringPattern”: null, “remainingTime”: 0, “reminderAppLabel”: null, “reminderLabel”: null, “reminderSubLabel”: null, “skillInfo”: null, “snoozedToTime”: null, “sound”: {“displayName”: “Simple Timer”, “folder”: null, “id”: “system_alerts_melodic_02”, “providerId”: “ECHO”, “sampleUrl”: “https://s3.amazonaws.com/deeappservice.prod.notificationtones/system_alerts_melodic_02.mp3”}, “status”: “OFF”, “targetPersonProfiles”: null, “timeZoneId”: null, “timerLabel”: null, “tmwNotificationProperties”: null, “triggerTime”: 0, “type”: “Timer”, “version”: “4”, “date_time”: “None None”}], [“4ba654a1-b466-3152-b9b1-c1d9abb8aa9a”, {“alarmTime”: 0, “automationId”: null, “createdDate”: 1569300862940, “deferredAtTime”: null, “deliveryType”: null, “deviceSerialNumber”: “G2A0RF0483620129”, “deviceType”: “A7WXQPH584YP”, “extensibleAttribute”: null, “geoLocationTriggerData”: null, “id”: “A7WXQPH584YP-G2A0RF0483620129-4ba654a1-b466-3152-b9b1-c1d9abb8aa9a”, “lastOccurrenceTimeInMilli”: 0, “lastUpdatedDate”: 0, “musicAlarmId”: null, “musicEntity”: null, “notificationIndex”: “4ba654a1-b466-3152-b9b1-c1d9abb8aa9a”, “originalDate”: null, “originalTime”: null, “personProfile”: null, “provider”: null, “rRuleData”: null, “recurrenceEligibility”: false, “recurringPattern”: null, “remainingTime”: 0, “reminderAppLabel”: null, “reminderLabel”: null, “reminderSubLabel”: null, “skillInfo”: null, “snoozedToTime”: null, “sound”: {“displayName”: “Simple Timer”, “folder”: null, “id”: “system_alerts_melodic_02”, “providerId”: “ECHO”, “sampleUrl”: “https://s3.amazonaws.com/deeappservice.prod.notificationtones/system_alerts_melodic_02.mp3”}, “status”: “OFF”, “targetPersonProfiles”: null, “timeZoneId”: null, “timerLabel”: null, “tmwNotificationProperties”: null, “triggerTime”: 0, “type”: “Timer”, “version”: “4”, “date_time”: “None None”}], [“767b6374-821c-3db7-a64b-e4ea87efd330”, {“alarmTime”: 0, “automationId”: null, “createdDate”: 1569561420226, “deferredAtTime”: null, “deliveryType”: null, “deviceSerialNumber”: “G2A0RF0483620129”, “deviceType”: “A7WXQPH584YP”, “extensibleAttribute”: null, “geoLocationTriggerData”: null, “id”: “A7WXQPH584YP-G2A0RF0483620129-767b6374-821c-3db7-a64b-e4ea87efd330”, “lastOccurrenceTimeInMilli”: 0, “lastUpdatedDate”: 0, “musicAlarmId”: null, “musicEntity”: null, “notificationIndex”: “767b6374-821c-3db7-a64b-e4ea87efd330”, “originalDate”: null, “originalTime”: null, “personProfile”: null, “provider”: null, “rRuleData”: null, “recurrenceEligibility”: false, “recurringPattern”: null, “remainingTime”: 0, “reminderAppLabel”: null, “reminderLabel”: null, “reminderSubLabel”: null, “skillInfo”: null, “snoozedToTime”: null, “sound”: {“displayName”: “Simple Timer”, “folder”: null, “id”: “system_alerts_melodic_02”, “providerId”: “ECHO”, “sampleUrl”: “https://s3.amazonaws.com/deeappservice.prod.notificationtones/system_alerts_melodic_02.mp3”}, “status”: “OFF”, “targetPersonProfiles”: null, “timeZoneId”: null, “timerLabel”: null, “tmwNotificationProperties”: null, “triggerTime”: 0, “type”: “Timer”, “version”: “4”, “date_time”: “None None”}], [“78ca075d-edfb-3040-b54a-8def39b2e47c”, {“alarmTime”: 0, “automationId”: null, “createdDate”: 1570259414129, “deferredAtTime”: null, “deliveryType”: null, “deviceSerialNumber”: “G2A0RF0483620129”, “deviceType”: “A7WXQPH584YP”, “extensibleAttribute”: null, “geoLocationTriggerData”: null, “id”: “A7WXQPH584YP-G2A0RF0483620129-78ca075d-edfb-3040-b54a-8def39b2e47c”, “lastOccurrenceTimeInMilli”: 0, “lastUpdatedDate”: 0, “musicAlarmId”: null, “musicEntity”: null, “notificationIndex”: “78ca075d-edfb-3040-b54a-8def39b2e47c”, “originalDate”: null, “originalTime”: null, “personProfile”: null, “provider”: null, “rRuleData”: null, “recurrenceEligibility”: false, “recurringPattern”: null, “remainingTime”: 0, “reminderAppLabel”: null, “reminderLabel”: null, “reminderSubLabel”: null, “skillInfo”: null, “snoozedToTime”: null, “sound”: {“displayName”: “Simple Timer”, “folder”: null, “id”: “system_alerts_melodic_02”, “providerId”: “ECHO”, “sampleUrl”: “https://s3.amazonaws.com/deeappservice.prod.notificationtones/system_alerts_melodic_02.mp3”}, “status”: “OFF”, “targetPersonProfiles”: null, “timeZoneId”: null, “timerLabel”: null, “tmwNotificationProperties”: null, “triggerTime”: 0, “type”: “Timer”, “version”: “4”, “date_time”: “None None”}], [“82e9c034-9f4f-3579-bb35-6fa7c9a32b37”, {“alarmTime”: 0, “automationId”: null, “createdDate”: 1569737057093, “deferredAtTime”: null, “deliveryType”: null, “deviceSerialNumber”: “G2A0RF0483620129”, “deviceType”: “A7WXQPH584YP”, “extensibleAttribute”: null, “geoLocationTriggerData”: null, “id”: “A7WXQPH584YP-G2A0RF0483620129-82e9c034-9f4f-3579-bb35-6fa7c9a32b37”, “lastOccurrenceTimeInMilli”: 0, “lastUpdatedDate”: 0, “musicAlarmId”: null, “musicEntity”: null, “notificationIndex”: “82e9c034-9f4f-3579-bb35-6fa7c9a32b37”, “originalDate”: null, “originalTime”: null, “personProfile”: null, “provider”: null, “rRuleData”: null, “recurrenceEligibility”: false, “recurringPattern”: null, “remainingTime”: 0, “reminderAppLabel”: null, “reminderLabel”: null, “reminderSubLabel”: null, “skillInfo”: null, “snoozedToTime”: null, “sound”: {“displayName”: “Simple Timer”, “folder”: null, “id”: “system_alerts_melodic_02”, “providerId”: “ECHO”, “sampleUrl”: “https://s3.amazonaws.com/deeappservice.prod.notificationtones/system_alerts_melodic_02.mp3”}, “status”: “OFF”, “targetPersonProfiles”: null, “timeZoneId”: null, “timerLabel”: null, “tmwNotificationProperties”: null, “triggerTime”: 0, “type”: “Timer”, “version”: “4”, “date_time”: “None None”}], [“8e4c2010-60c1-3647-9653-8bb1b05f7588”, {“alarmTime”: 0, “automationId”: null, “createdDate”: 1570167649002, “deferredAtTime”: null, “deliveryType”: null, “deviceSerialNumber”: “G2A0RF0483620129”, “deviceType”: “A7WXQPH584YP”, “extensibleAttribute”: null, “geoLocationTriggerData”: null, “id”: “A7WXQPH584YP-G2A0RF0483620129-8e4c2010-60c1-3647-9653-8bb1b05f7588”, “lastOccurrenceTimeInMilli”: 0, “lastUpdatedDate”: 0, “musicAlarmId”: null, “musicEntity”: null, “notificationIndex”: “8e4c2010-60c1-3647-9653-8bb1b05f7588”, “originalDate”: null, “originalTime”: null, “personProfile”: null, “provider”: null, “rRuleData”: null, “recurrenceEligibility”: false, “recurringPattern”: null, “remainingTime”: 0, “reminderAppLabel”: null, “reminderLabel”: null, “reminderSubLabel”: null, “skillInfo”: null, “snoozedToTime”: null, “sound”: {“displayName”: “Simple Timer”, “folder”: null, “id”: “system_alerts_melodic_02”, “providerId”: “ECHO”, “sampleUrl”: “https://s3.amazonaws.com/deeappservice.prod.notificationtones/system_alerts_melodic_02.mp3”}, “status”: “OFF”, “targetPersonProfiles”: null, “timeZoneId”: null, “timerLabel”: null, “tmwNotificationProperties”: null, “triggerTime”: 0, “type”: “Timer”, “version”: “4”, “date_time”: “None None”}], [“bf7dae65-c931-394e-9ba4-1434fd15b29e”, {“alarmTime”: 0, “automationId”: null, “createdDate”: 1570343985917, “deferredAtTime”: null, “deliveryType”: null, “deviceSerialNumber”: “G2A0RF0483620129”, “deviceType”: “A7WXQPH584YP”, “extensibleAttribute”: null, “geoLocationTriggerData”: null, “id”: “A7WXQPH584YP-G2A0RF0483620129-bf7dae65-c931-394e-9ba4-1434fd15b29e”, “lastOccurrenceTimeInMilli”: 0, “lastUpdatedDate”: 0, “musicAlarmId”: null, “musicEntity”: null, “notificationIndex”: “bf7dae65-c931-394e-9ba4-1434fd15b29e”, “originalDate”: null, “originalTime”: null, “personProfile”: null, “provider”: null, “rRuleData”: null, “recurrenceEligibility”: false, “recurringPattern”: null, “remainingTime”: 0, “reminderAppLabel”: null, “reminderLabel”: null, “reminderSubLabel”: null, “skillInfo”: null, “snoozedToTime”: null, “sound”: {“displayName”: “Simple Timer”, “folder”: null, “id”: “system_alerts_melodic_02”, “providerId”: “ECHO”, “sampleUrl”: “https://s3.amazonaws.com/deeappservice.prod.notificationtones/system_alerts_melodic_02.mp3”}, “status”: “OFF”, “targetPersonProfiles”: null, “timeZoneId”: null, “timerLabel”: null, “tmwNotificationProperties”: null, “triggerTime”: 0, “type”: “Timer”, “version”: “4”, “date_time”: “None None”}], [“c960975f-08f7-370f-b453-3a781cfccf71”, {“alarmTime”: 0, “automationId”: null, “createdDate”: 1570083936427, “deferredAtTime”: null, “deliveryType”: null, “deviceSerialNumber”: “G2A0RF0483620129”, “deviceType”: “A7WXQPH584YP”, “extensibleAttribute”: null, “geoLocationTriggerData”: null, “id”: “A7WXQPH584YP-G2A0RF0483620129-c960975f-08f7-370f-b453-3a781cfccf71”, “lastOccurrenceTimeInMilli”: 0, “lastUpdatedDate”: 0, “musicAlarmId”: null, “musicEntity”: null, “notificationIndex”: “c960975f-08f7-370f-b453-3a781cfccf71”, “originalDate”: null, “originalTime”: null, “personProfile”: null, “provider”: null, “rRuleData”: null, “recurrenceEligibility”: false, “recurringPattern”: null, “remainingTime”: 0, “reminderAppLabel”: null, “reminderLabel”: null, “reminderSubLabel”: null, “skillInfo”: null, “snoozedToTime”: null, “sound”: {“displayName”: “Simple Timer”, “folder”: null, “id”: “system_alerts_melodic_02”, “providerId”: “ECHO”, “sampleUrl”: “https://s3.amazonaws.com/deeappservice.prod.notificationtones/system_alerts_melodic_02.mp3”}, “status”: “OFF”, “targetPersonProfiles”: null, “timeZoneId”: null, “timerLabel”: null, “tmwNotificationProperties”: null, “triggerTime”: 0, “type”: “Timer”, “version”: “4”, “date_time”: “None None”}], [“eccbb991-5c43-37c2-b41e-55dd82f8fb2f”, {“alarmTime”: 0, “automationId”: null, “createdDate”: 1570424217776, “deferredAtTime”: null, “deliveryType”: null, “deviceSerialNumber”: “G2A0RF0483620129”, “deviceType”: “A7WXQPH584YP”, “extensibleAttribute”: null, “geoLocationTriggerData”: null, “id”: “A7WXQPH584YP-G2A0RF0483620129-eccbb991-5c43-37c2-b41e-55dd82f8fb2f”, “lastOccurrenceTimeInMilli”: 0, “lastUpdatedDate”: 0, “musicAlarmId”: null, “musicEntity”: null, “notificationIndex”: “eccbb991-5c43-37c2-b41e-55dd82f8fb2f”, “originalDate”: null, “originalTime”: null, “personProfile”: null, “provider”: null, “rRuleData”: null, “recurrenceEligibility”: false, “recurringPattern”: null, “remainingTime”: 0, “reminderAppLabel”: null, “reminderLabel”: null, “reminderSubLabel”: null, “skillInfo”: null, “snoozedToTime”: null, “sound”: {“displayName”: “Simple Timer”, “folder”: null, “id”: “system_alerts_melodic_02”, “providerId”: “ECHO”, “sampleUrl”: “https://s3.amazonaws.com/deeappservice.prod.notificationtones/system_alerts_melodic_02.mp3”}, “status”: “OFF”, “targetPersonProfiles”: null, “timeZoneId”: null, “timerLabel”: null, “tmwNotificationProperties”: null, “triggerTime”: 0, “type”: “Timer”, “version”: “4”, “date_time”: “None None”}], [“f13dafdb-b987-349b-82a1-4ec5c3dd8e35”, {“alarmTime”: 0, “automationId”: null, “createdDate”: 1569217607141, “deferredAtTime”: null, “deliveryType”: null, “deviceSerialNumber”: “G2A0RF0483620129”, “deviceType”: “A7WXQPH584YP”, “extensibleAttribute”: null, “geoLocationTriggerData”: null, “id”: “A7WXQPH584YP-G2A0RF0483620129-f13dafdb-b987-349b-82a1-4ec5c3dd8e35”, “lastOccurrenceTimeInMilli”: 0, “lastUpdatedDate”: 0, “musicAlarmId”: null, “musicEntity”: null, “notificationIndex”: “f13dafdb-b987-349b-82a1-4ec5c3dd8e35”, “originalDate”: null, “originalTime”: null, “personProfile”: null, “provider”: null, “rRuleData”: null, “recurrenceEligibility”: false, “recurringPattern”: null, “remainingTime”: 0, “reminderAppLabel”: null, “reminderLabel”: null, “reminderSubLabel”: null, “skillInfo”: null, “snoozedToTime”: null, “sound”: {“displayName”: “Simple Timer”, “folder”: null, “id”: “system_alerts_melodic_02”, “providerId”: “ECHO”, “sampleUrl”: “https://s3.amazonaws.com/deeappservice.prod.notificationtones/system_alerts_melodic_02.mp3”}, “status”: “OFF”, “targetPersonProfiles”: null, “timeZoneId”: null, “timerLabel”: null, “tmwNotificationProperties”: null, “triggerTime”: 0, “type”: “Timer”, “version”: “4”, “date_time”: “None None”}], [“f9da304c-5787-3682-aa2e-afaacc214d15”, {“alarmTime”: 0, “automationId”: null, “createdDate”: 1570264219732, “deferredAtTime”: null, “deliveryType”: null, “deviceSerialNumber”: “G2A0RF0483620129”, “deviceType”: “A7WXQPH584YP”, “extensibleAttribute”: null, “geoLocationTriggerData”: null, “id”: “A7WXQPH584YP-G2A0RF0483620129-f9da304c-5787-3682-aa2e-afaacc214d15”, “lastOccurrenceTimeInMilli”: 0, “lastUpdatedDate”: 0, “musicAlarmId”: null, “musicEntity”: null, “notificationIndex”: “f9da304c-5787-3682-aa2e-afaacc214d15”, “originalDate”: null, “originalTime”: null, “personProfile”: null, “provider”: null, “rRuleData”: null, “recurrenceEligibility”: false, “recurringPattern”: null, “remainingTime”: 0, “reminderAppLabel”: null, “reminderLabel”: null, “reminderSubLabel”: null, “skillInfo”: null, “snoozedToTime”: null, “sound”: {“displayName”: “Simple Timer”, “folder”: null, “id”: “system_alerts_melodic_02”, “providerId”: “ECHO”, “sampleUrl”: “https://s3.amazonaws.com/deeappservice.prod.notificationtones/system_alerts_melodic_02.mp3”}, “status”: “OFF”, “targetPersonProfiles”: null, “timeZoneId”: null, “timerLabel”: null, “tmwNotificationProperties”: null, “triggerTime”: 0, “type”: “Timer”, “version”: “4”, “date_time”: “None None”}], [“fdcd06ac-c121-3f5c-8536-fa66ac4108c8”, {“alarmTime”: 0, “automationId”: null, “createdDate”: 1569658560291, “deferredAtTime”: null, “deliveryType”: null, “deviceSerialNumber”: “G2A0RF0483620129”, “deviceType”: “A7WXQPH584YP”, “extensibleAttribute”: null, “geoLocationTriggerData”: null, “id”: “A7WXQPH584YP-G2A0RF0483620129-fdcd06ac-c121-3f5c-8536-fa66ac4108c8”, “lastOccurrenceTimeInMilli”: 0, “lastUpdatedDate”: 0, “musicAlarmId”: null, “musicEntity”: null, “notificationIndex”: “fdcd06ac-c121-3f5c-8536-fa66ac4108c8”, “originalDate”: null, “originalTime”: null, “personProfile”: null, “provider”: null, “rRuleData”: null, “recurrenceEligibility”: false, “recurringPattern”: null, “remainingTime”: 0, “reminderAppLabel”: null, “reminderLabel”: null, “reminderSubLabel”: null, “skillInfo”: null, “snoozedToTime”: null, “sound”: {“displayName”: “Simple Timer”, “folder”: null, “id”: “system_alerts_melodic_02”, “providerId”: “ECHO”, “sampleUrl”: “https://s3.amazonaws.com/deeappservice.prod.notificationtones/system_alerts_melodic_02.mp3”}, “status”: “OFF”, “targetPersonProfiles”: null, “timeZoneId”: null, “timerLabel”: null, “tmwNotificationProperties”: null, “triggerTime”: 0, “type”: “Timer”, “version”: “4”, “date_time”: “None None”}]]
friendly_name: Küche next Timer
icon: mdi:timer
device_class: timestamp

Hi,

I have tested the new fixes for MusicAlarm and timezone. Now I have an issue with the visible/displayed time for the next timer. It says for example, next time is 2h ago or was yesterday, even the internal time of the sensor is tomorrow:

all for the same timer. 3 different informations. One says 2h ago, one says 21h ago, but timer itself is in more or less 21h in future. Picture taken at 09:15 08.10.2019, next timer is 06:45 09.10.2019