[Please Help] Need someone to review my configuration.yaml maybe other .yamls

Hello everyone, HA newbie and first time poster. I was hoping someone more experienced could spot my mistake and point me in the right direction. I started a couple weeks ago and slowly added things. I thought things were working but I realized today that they are not completely. My frontend loads and I can switch the switches and that stuff works but all of the info displayed must be from a week or so ago. Lots of changes since then and I’m not sure what happened. Any changes I make to the groups or frontend stuff like the names do not update or change when I restart HA. I’ve restarted both through the app and also cmd hass

The config tester says my config is valid and I am not seeing any errors. But none of my groups work, or weblinks, or any other .yaml file I link to in my configure.yaml with the !include option. I can post the group.yaml or anything else needed if you have any ideas. Thank you in advance!

homeassistant:
  name: Home
  latitude: !secret HA_LATITUDE
  longitude: !secret HA_LONGITUDE
  elevation: !secret HA_ELEVATION
  unit_system: imperial
  time_zone: !secret HA_TIMEZONE
  customize: !include customize.yaml
  
#######################################################################################################################
# INCLUDE 
####################################################################################################################### 
automation: !include automations.yaml
group: !include groups.yaml
scene: !include scenes.yaml
# script: !include scripts.yaml
zone: !include zones.yaml
weblink: !include weblinks.yaml
 
# Enables the frontend
frontend:

# Enables configuration UI
config:

http:
  api_password: !secret HA_Password
  base_url: !secret HA_RemoteURL
  # Uncomment this if you are using SSL/TLS, running in Docker container, etc.
  # base_url: example.duckdns.org:8123

updater:
  include_used_components: true

  discovery:

# Allows you to issue voice commands from the frontend in enabled browsers
conversation:

# Enables support for tracking state changes over time
history:

# View all events in a logbook
logbook:

#######################################################################################################################
# HUE LIGHTS
####################################################################################################################### 
light:
  platform: hue
  host: !secret HUE_IP_ADDRESS
  allow_hue_groups: true

#########################################################
# CAMERAS
######################################################### 
camera:
  - platform: generic
    name: Bedroom Camera
    still_image_url: !secret BedroomCamera_URL
    username: !secret BedroomCamera_Username
    password: !secret BedroomCamera_Password
    authentication: digest
  - platform: generic
    name: Back Porch Camera
    still_image_url: !secret BackPorchCamera_URL
    username: !secret BackPorchCamera_Username
    password: !secret BackPorchCamera_Password
    authentication: digest
  - platform: generic
    name: Front Porch Camera
    still_image_url: !secret FrontPorchCamera_URL
    username: !secret FrontPorchCamera_Username
    password: !secret FrontPorchCamera_Password
    authentication: digest
    
#########################################################
# SENSORS
######################################################### 
sensor:
  - platform: wunderground
    api_key: !secret WeatherUndergroundAPIKey
    monitored_conditions:
      - weather_1d_metric
      - weather_1n_metric
      - weather_2d_metric
      - weather_2n_metric
      - weather_3d_metric
      - weather_3n_metric
      - weather_4d_metric
      - weather_4n_metric
      - temp_high_record_c
      - temp_high_1d_c
      - temp_c
      - temp_low_1d_c
      - temp_low_record_c
      - precip_1d
      - precip_1d_mm
      - wind_kph
      - wind_1d_kph
      - alerts

#########################################################
# MEDIA PLAYER
######################################################### 
media_player:
  - platform: spotify
    client_id: !secret Spotify_Client_Id
    client_secret: !secret Spotify_Client_Secret
    scan_interval: 10
# YAMAHA Receiver
  - platform: yamaha
    host: !secret YAMAHA_IP_ADDRESS
    name: Receiver
    source_ignore:
      - "AUX"
      - "HDMI4"
      - "HDMI5"
      - "HDMI6"
    source_names:
      HDMI1: "Xfinity"
      HDMI2: "Xbox"
      HDMI3: "Fire TV"
      AV4: "HTPC / LGTV"
# LG TV
  - platform: lg_netcast
    host: !secret LGTV_IP_ADDRESS
    name: Living Room TV
    access_token: !secret LGTV_Access_Token
 
# Text to speech
tts:
  - platform: google
  
#######################################################################################
# Join App
#######################################################################################
notify:
  - platform: joaoapps_join
    api_key: !secret Join_API_Key
    device_ids: a4bcfca5ec284ed5a5c9e1708b16382b, 094b56ccff4a4c4a975e37ae6927e04c, 92b747dbb3864e68a0300a1f53ce1816, 8e63d99bf4b44500b84899ed7fd6de64, 869a5c1eb7fb4f5db3ccf56d9d255b9f, d6efd2710046422b96b0471c068be491, 81093197b57f4936b610d92eae1ed72d, fd669a20ea2647e490e6e15a3facafab, 86f46c19f9994c1baaa5cbef2dc4c451
    device_names: PC2 Chrome, PC1 Chrome, GN5 App, Laptop Chrome, HTPC Chrome, HTPC Chrome 2, HTPC Win10, Galaxy Tab-A, HP 10
    name: All Join Devices

joaoapps_join:
  - name: android
    device_id: group.android
    api_key: !secret Join_API_Key
  
#######################################################################################
# MQTTHA
#######################################################################################

mqtt:
  broker: !secret MQTT_BROKER
  port: !secret MQTT_PORT
  client_id: MQTTHA
  keepalive: 60
  username: !secret MQTT_USERNAME
  password: !secret MQTT_PASSWORD
  
device_tracker:
  - platform: owntracks
    max_gps_accuracy: 200  

start here…

 updater:
    include_used_components: true

    discovery:

should be

updater:
  include_used_components: true

discovery:

Thank you! Good eye. That’s the kind of thing I am missing after looking at this for 8 hours today.

I made that fix and it now detects today’s HA update but no change other than that. Am I doing anything else wrong on the configuratio.yaml?

I will paste my groups.yaml as well. I’ve got multiple groups set to view: yes but that is not seeming to matter. My frontend page is only showing my default screen and 1 tab I made 2 weeks ago.

# #########################################################
# # GROUPS
# #########################################################  
default_view:
  name: Main
  view: yes
  entities:
    - group.spotify
    - group.back_porch
    - group.bathroom
    - group.bedroom
    - group.dining_room
    - group.front_porch
    - group.living_room
    - group.office
Doors:
  name: Doors
  view: yes
  entities:
    - binary_sensor.front_door_sensor_opened
    - binary_sensor.back_door_opened

Lights:
  view: yes
  icon: mdi:lightbulb
  entities:
    - group.back_porch
    - group.bathroom
    - group.bedroom
    - group.front_porch
    - group.living_room
    - group.office
    
  # # OwnTracks:
    # # name: OwnTracks
    # # entities:
      # # -

# Cameras:
Cameras:  
  name: Cameras
  view: yes
  entities:
    - camera.bedroom_camera
    - camera.front_porch_camera
    - camera.back_porch_camera

Spotify:
  name: spotify
  view: no
  entities:
   - media_player.spotify
#  Lights:
#    name: Lights
#    entities:
#      - light.bathroom
#      - light.bedroom_2
Back Porch:
  name: Back Porch
  view: no
  entities:
    - light.back_porch
    - camera.back_porch_camera
    - binary_sensor.back_door_sensor_opened
Bedroom:
  name: Bedroom
  view: no
  entities:
    - light.bedroom_2
    - switch.bedroom_switch
    - camera.bedroom_camera
    - media_player.bedroom_home
    - media_player.receiver_zone_2
    - media_player.bedroom
Bathroom:
  name: Bathroom
  view: no
  entities:
    - light.bathroom
    - sensor.bathroom_temperature
    - binary_sensor.bathroom_switch
    - binary_sensor.bathroom_motion
    - media_player.bathroom
Dining Room:
  name: Dining Room
  view: no
  entities:
    - light.dining_room
Front Porch:
  name: Front Porch
  view: no
  entities:
    - light.front_porch
    - binary_sensor.front_door_sensor_opened
    - camera.front_porch_camera
    - binary_sensor.front_porch_motion
Living Room:
  name: Living Room
  view: no
  entities:
    - light.living_room
    - light.living_room_c_2
    - switch.living_room_switch
    - media_player.fire_tv
    - media_player.living_room_home
    - media_player.receiver
    - media_player.living_room_tv
Office:
  name: Office
  view: no
  entities:
    - light.office
    - binary_sensor.office_motion
Weather:
  name: Weather
  view: yes
  entities:
    - group.Weather_Daily_Forecast
    - group.Weather_Overview
Weather Daily Forecast:
  name: Forecast
  view: no
  entities:
    - sensor.pws_alerts
    - sensor.pws_weather_1d_metric
    - sensor.pws_weather_1n_metric
    - sensor.pws_weather_2d_metric
    - sensor.pws_weather_2n_metric
    - sensor.pws_weather_3d_metric
    - sensor.pws_weather_3n_metric
    - sensor.pws_weather_4d_metric
    - sensor.pws_weather_4n_metric
Weather Overview:
  name: Overview
  view: no
  entities:
    - sensor.pws_weather_1d_metric
    - sensor.pws_temp_high_record_c
    - sensor.pws_temp_high_1d_c
    - sensor.pws_temp_c
    - sensor.pws_temp_low_1d_c
    - sensor.pws_temp_low_record_c
    - sensor.pws_precip_1d
    - sensor.pws_precip_1d_mm
    - sensor.pws_wind_kph
    - sensor.pws_wind_1d_kph
    - sensor.pws_alerts
Spotify:
  name: spotify
  view: no
  entities:
   - media_player.spotify

Last line needs a space before -

Thank you, fixed that. I had tried restarting home assistant multiple times yesterday while troubleshooting but should have restarted my computer. Once I did, my frontend changes showed up, including the weblinks. At this point I think I have everything working that should be and will start focusing on learning how to do scripts and floorplan. Thank you both for your help.

I may be mistaken here, but don’t the last 2 groups needs underscores instead of spaces in the group id?

Weather_Overview:

instead of

Weather Overview:

Edit:. Just noticed that to be true of all multiple word group ids.

I don’t think the spaces matter in that particular place because it automatically makes them lower case and underscores where the spaces are when it comes to the group entitites. In any event, I’ve got everything up and running perfectly so far but thank you for your time. This morning I got the presence detection with cloudmqtt and owntrack so pretty happy. Now onto floorplan.