Text to Speech Notification to Leave for Appointment

ok, I figured it out, the Google Travel Time component dynamically gets the address and time from the google calendar…now the next stage is to do some calculations to and announce at the time to leave to my Sonos. I’ll post the rest when I get that working for anyone interested.

 - platform: google_travel_time
   api_key: XXXX
   origin: zone.home
   destination: sensor.cal_location
   options: 
     arrival_time: sensor.cal_start_time
 - platform: template
   sensors:
     cal_location:
       value_template: '{{ states.calendar.jeremy.attributes.location }}'
       friendly_name: 'Calendar Location'
       unit_of_measurement: 'address'
     cal_start_time:
       value_template: '{{ states.calendar.jeremy.attributes.start_time }}'
       friendly_name: 'Calendar Start'
       unit_of_measurement: 'time'