Hi,
I’ve first added all my sensors in the configuration.yaml. Then I was having all values coming from all those sensor.
I’ve then start to work on the groups.yaml file, by copy-pasting entities id from the states view(so I’m sure I’m not mistaken with the name of my entities. I’ve also made a configuration validity check with success.
Now my file is the following:
default_view:
view: yes
name: Home
icon: mdi:home
entities:
- group.bedroom
- group.office
- group.lounge
- group.balcony
- group.kitchen
- group.appart
bedroom:
name: Chambre
entities:
- light.chambre
- sensor.netatmo_chambre_battery
- sensor.netatmo_chambre_co2
- sensor.netatmo_chambre_humidity
- sensor.netatmo_chambre_temperature
- sensor.netatmo_chambre_radio
office:
name: Bureau
entities:
- light.bureau
- sensor.netatmo_bureau_battery
- sensor.netatmo_bureau_co2
- sensor.netatmo_bureau_humidity
- sensor.netatmo_bureau_temperature
- sensor.netatmo_bureau_radio
lounge:
name: Salon
entities:
- binary_sensor.jcam__fenetre_salon__tag_open
- binary_sensor.jcam_motion
- camera.jcam
- light.salon
- media_player.j4n_tv_ue65mu7000
- sensor.netatmo_salon_co2
- sensor.netatmo_salon_humidity
- sensor.netatmo_salon_temperature
- sensor.netatmo_salon_noise
- sensor.netatmo_salon_pressure
- sensor.netatmo_salon_radio
- vacuum.alfred
balcony:
name: Balcon
entities:
- sensor.netatmo_balcon_battery
- sensor.netatmo_balcon_humidity
- sensor.netatmo_balcon_temperature
- sensor.netatmo_balcon_radio
kitchen:
name: Cuisine
entities:
- binary_sensor.jcam__porte_cuisine__tag_open
appart:
name: Appart
entities:
- binary_sensor.jcam__porte_entree__tag_open
web:
view: yes
name: Web
icon: mdi:cloud
entities:
- group.crypto
- group.network_speed
network_speed:
name: Internet speed
icon: mdi:access-point-network
entities:
- sensor.speedtest_ping
- sensor.speedtest_upload
- sensor.speedtest_download
crypto:
name: Crypto
icon: mdi:currency-btc
entities:
- group.crypto_btc
- group.crypto_ltc
crypto_btc:
name: Bitcoin
icon: mdi:currency-btc
entities:
- sensor.btc_exchange_rate
- sensor.coinbase_portefeuille_en_btc
- sensor.exchange_rate_1_btc
crypto_ltc:
name: Litecoin
icon: mdi:currency-try
entities:
- sensor.ltc_exchange_rate
- sensor.coinbase_portefeuille_en_ltc
I’ve groups coming, but it appears that all my netatmo sensors are not present, I’ve basically only my lights and door sensors. All my temperature/hydro/… are missing.
what did I miss?
My configurations.yml even if I think it’s not the problem:
homeassistant:
# Name of the location where Home Assistant is running
name: Home
# Location required to calculate the time the sun rises and sets
latitude: xxxxx
longitude: yyyyyy
# Impacts weather/sunrise data (altitude above sea level in meters)
elevation: 634
# metric for Metric, imperial for Imperial
unit_system: metric
# Pick yours from here: http://en.wikipedia.org/wiki/List_of_tz_database_time_zones
time_zone: Europe/Zurich
# Customization file
customize: !include customize.yaml
# Show links to resources in log and frontend
#introduction:
# Enables the frontend
frontend:
# Enables configuration UI
config:
http:
# Secrets are defined in the file secrets.yaml
# api_password: !secret http_password
# Uncomment this if you are using SSL/TLS, running in Docker container, etc.
# base_url: example.duckdns.org:8123
# Checks for available updates
# Note: This component will send some information about your system to
# the developers to assist with development of Home Assistant.
# For more information, please see:
# https://home-assistant.io/blog/2016/10/25/explaining-the-updater/
updater:
# Optional, allows Home Assistant developers to focus on popular components.
# include_used_components: true
# Discover some devices automatically
discovery:
# Allows you to issue voice commands from the frontend in enabled browsers
conversation:
# Enables support for tracking state changes over time
history:
# Tracked history is kept for 10 days
recorder:
purge_keep_days: 10
# View all events in a logbook
logbook:
# Enables a map showing the location of tracked devices
map:
# Track the sun
#sun:
# Weather prediction
#sensor:
# - platform: yr
# Text to speech
tts:
- platform: google
# Cloud
cloud:
group: !include groups.yaml
automation: !include automations.yaml
script: !include scripts.yaml
panel_iframe:
configurator:
title: Configurator
icon: mdi:wrench
url: http://192.168.0.174:3218
netatmo:
api_key: xxxx
secret_key: yyyy
username: zzzz
password: wwww
ifttt:
key: aaaa
coinbase:
api_key: bbb
api_secret: ccc
exchange_rate_currencies:
- BTC
- BTCH
- ETH
- LTC
vacuum:
- platform: roomba
host: 192.168.0.63
username: aaaa
password: bbbb
continous: False
name: Alfred
media_player:
- platform: samsungtv
host: 192.168.0.172
- platform: spotify
client_id: aaaa
client_secret: bbbb
sensor:
- platform: transmission
host: 192.168.0.30
monitored_variables:
- 'current_status'
- 'download_speed'
- 'upload_speed'
- 'active_torrents'
- platform: speedtest
monitored_conditions:
- ping
- download
- upload
Thank you very much!