2021.9.0: More energy, USB discovery, template ❤️

Last release we introduced Home Energy management, and we are so happy with all the reactions and response we have received ❤️! In this version we have added some much requested features to make it even more useful, also a lot more integrations now have support for it ⚡️.

Personally I also really like the new long term statistics and statistics card introduced last release, and I’m really happy that in this release we will be able to use it for a lot more sensors.

Enjoy another great release! Be sure to tune into the 2021.9 Release Party on YouTube later today (9:00 PM CET) to learn more about this release!

Home Energy Management updates

Last release, we introduced the new Home Energy management features into Home Assistant and we are happy to see you like it!

We have seen quite a few people sharing their Energy dashboards on socials like Facebook and Twitter, which is really awesome. Share a screenshot of your dashboard and your story too!

In this release, the story continues! Here is what we have in store for you:

View energy usage over a period of time

The first iteration of the Energy Dashboard showed a single day at the time. Great! But what if you want to see how you did this week? Or month? Heck, a year even?!

Well, now you can! In the top right of the dashboard, you can now select the grouping period you want to see: Day, Week, Month or Year.

Screenshot of the new Energy Dashboard period selection Screenshot of the new Energy Dashboard period selection.

The arrow buttons allow you to browse through those periods. For example, when selecting a period of a month to display, the arrow buttons will take you a whole month back/forward in the view.

Keeping track of your gas usage

In some countries, homes are connected to gas. The gas is being used to heat water, cook and for heating the house. If you have a home that is connected to gas, we have some great news for you!

Maybe you noticed it already in the previous screenshot, as of this release, we have added support for monitoring your gas usage.

Screenshot of the new Energy Dashboard monitoring gas usage Screenshot of the new Energy Dashboard monitoring gas usage.

In certain countries, the gas meters have a standardized way of reading out the gas usage locally or provide this information via the electricity meter. For example, in the Netherlands, Belgium and Luxembourg you could use the SlimmeLezer to obtain your gas usage.

Support for home batteries

Having solar panels is a great way to generate electricity to power your home. However, where do you store energy generated by your solar panels that you don’t need right now?

Well, for many, the solution resides in a, high capacity, home battery to store electricity for use when the sun can’t provide it (e.g., during the night).

Numerous have requested this feature, and therefore we now have added support for home batteries to the Home Assistant energy management.

Animation of a home battery as part of the energy distribution Animation of a home battery as part of the energy distribution.

Added support for many more integrations

When releasing a feature such as the Home Energy management, we understand you want to use and play with it right away. And while we had prepared and updated a lot of integrations to be ready when we first launched, there were still many in need of an update.

As a result, we have been flooded by requests to add support to virtually all integrations that didn’t had it yet… :) Many of those requests have been fulfilled in this release.

For example, the Kostal Plenticore Solar Inverter, PVOutput, Fronius, SolaX Power, Growatt, Solar-Log, YouLess, Emoncms, Modbus, and many more have added support for all the energy goodness.

If you are a custom integration developer who wants to add support, be sure to check out our developer blog to catch up with the latest changes.

Long term statistics unlocked for all sensors

In the previous release, we introduced long term statistics for sensors, including a beautiful Lovelace card that goes with it. However, in the previous release we had limited this feature to temperature, humidity, power and energy related sensors.

As of this release, we unleashed the long term statistics for all sensors!

Screenshot of a statistics graph showing the luminosity in the garden versus the front of my house Screenshot of a statistics graph showing the luminosity in the garden versus the front of my house.

Long term statistics applies to all integrations that indicate their sensors support those. Luckily a lot have already done so.

USB Discovery

Thanks to @bdraco, Home Assistant can now discover USB devices and the integrations that work with that device. This makes setting up things like Z-Wave or Zigbee with Home Assistant an actual breeze now!

For example, if you plug in your new Nortek HubZ USB stick into the machine running Home Assistant, it will discover and notify you about it.

Screenshot of a discovered USB device compatible with Z-Wave JS Screenshot of a discovered USB device compatible with Z-Wave JS.

Now it is just a single click on the “Configure” button to set up the Z-Wave JS integration and done! Super nice!

Support for USB discovery has currently been added to the Z-Wave JS and ZHA integrations.

Z-Wave JS Updates

If you are a Z-Wave siren/doorbell owner, you probably know how frustrating it was to wait for Home Assistant to add entity support for the Sound Switch CC (Command Class). This is caused by the blazing fast speed the upstream Z-Wave JS project is moving forward at; Often much faster than Home Assistant is able to keep up with.

It also might be that Home Assistant cannot (or is likely not to) support the specific command class you care about; Nevertheless, that shouldn’t stop you from being able to create automations for those devices!

In this release, we have introduced the new zwave_js.value_updated automation trigger type which will allow you to trigger an automation off of any Command Class value that Z-Wave JS supports!

In order to leverage this trigger type in the UI, you will have to use device automations, but if you are writing your automations in YAML, you can use the trigger directly.

That’s not all for Z-Wave JS integration, we have more to share!

  • Tired of your child flipping that switch that’s fully automated? Use the new select entity for the Protection Command Class to disable local access.
  • Don’t want to specify the tone and volume every time you activate your siren? Now you have access to the default volume via a number entity and the default tone via a select entity.
  • We’ve made zwave_js.* services more flexible: They now support area IDs and group entities as inputs!
  • We’ve made basic CC values directly controllable by moving them from using sensor entities to become number entities instead.

New template entities: Number and Select

Yes! We have new platforms you can utilize using the template integration!

Thanks to [@raman325] you can now template your own select and number entities! This unlocks quite the potential for creating some advanced user interfaces :)

As an example says more than a thousand words, here are two examples that both are based on a WLED LED strip. It can be used to extract features from the WLED strip into their own entities.

# Example number entity that represents the effect speed on a WLED LED strip
# between 0 and 100%, translating it from an 0 to 255 scale.
template:
  number:
    - name: "Example number: WLED effect speed"
      state: ""
      min: 0
      max: 100
      set_value:
        service: wled.effect
        target:
          entity_id: light.wled
        data:
          speed: "" 
# Example select entity that extracts effects from a light.
# When you change the selected option, the effect of the light changes.
template:
  select:
    - name: "Example select: WLED effect"
      state: ""
      options: ""
      select_option:
        service: light.turn_on
        target:
          entity_id: light.wled
        data:
          effect: "" 

Oh! And they can also be used with the new trigger templates! Check out the documentation for all options available.

New template functions for areas

Two new template functions have been added, making working with areas in YAML (when using templating) a little bit easier.

  • area_id("value") returns the area ID for a given value. The value can be a device ID, entity ID, or area name. This function can also be used as a filter.

    example: ""
    example: ""
    example: ""
    
  • area_name("value") returns the area name for a given value. The value can be a device ID, entity ID, or area ID. This function can also be used as a filter.

    service: notify.frenck
    data:
      title: "Motion detected!"
      message: >-
        Motion has been detected in the  area.
    

Thanks [@raman325]!

Other noteworthy changes

There is much more juice in this release; here are some of the other noteworthy changes this release:

  • @balloob added a lot more validations to the energy configuration UI and added more warning/error messages. [@ludeeus] made them look good by adding a beautiful new styling for these kind of messages.
  • Home Assistant offline and missed generating its energy/long statistics? Not anymore! Home Assistant will now catch up on start, thanks [@emontnemery]!
  • Thanks to @bdraco, camera images can now be scaled to a resolution that fits the device/screen you are looking at; Additionally, they only update when visible. This makes cameras usable in any bandwidth situation.
  • The Shelly integration now supports transitions for lights! Thanks @bieniu!
  • Yeelight now supports local push (instead of polling), awesome [@starkillerOG]!
  • [@emontnemery] upgraded DSMR to support Swedish smart energy meters! Nice!
  • For Yamaha MusicCast, [@micha91] has unlocked the Media Browser features!
  • The Rainforest Eagle will now provide pricing data if that is available, thanks @balloob!
  • [@giannello] added the ability to ask your Google Home where your vacuum cleaner is :)
  • If you use the shopping list feature of Home Assistant, you can now remove all completed items at once using a service call. Thanks, @GrumpyMeow!
  • @bdraco Added a new advanced feature for HomeKit, allowing to forward device events to HomeKit, unlocking the ability to trigger HomeKit automations or scenes.
  • Thanks to [@ludeeus], we can now use different brand images in the UI when it is in dark mode.
  • If you have a Sonos speaker, you can now modify the bass & treble level using a service call, thanks @Tigger2014!
  • Utility Meter cycles are now super flexible with the new cron patterns option, nice [@dgomes]!
  • Bond now provides new services to start/stop increasing/decreasing the brightness of a light. Thanks @bdraco!

New Integrations

We welcome the following new integrations this release:

  • [AirTouch 4][airtouch4 docs], added by @LonePurpleWolf
  • [Fjäråskupan][fjaraskupan docs], added by [@elupus]
  • [P1 Monitor][p1_monitor docs], added by [@klaasnicolaas]
  • [IoTaWatt][iotawatt docs], added by [@gtdiehl]
  • [Tractive][tractive docs], added by [@zhulik]
  • [USB Discovery][usb docs], added by @bdraco

Integrations now available to set up from the UI

The following integrations are now available via the Home Assistant UI:

  • [Nanoleaf][nanoleaf docs], done by [@milanmeu]
  • [Nmap Tracker][nmap_tracker docs], done by @bdraco
  • [Rainforest EAGLE-200][rainforest_eagle docs], done by @balloob
  • [Uptime Robot][uptimerobot docs], done by [@ludeeus]

If you need help…

…don’t hesitate to use our very active forums or join us for a little chat.

Experiencing issues introduced by this release? Please report them in our issue tracker. Make sure to fill in all fields of the issue template.

Breaking Changes

Below is a listing of the breaking change for this release, per subject or integration. Click on one of those to read more about the breaking change for that specific item.

1-Wire
AVM FRITZ!Box Tools
DSMR
Epson
Growatt
HomeKit
HomeKit Controller
IKEA TRÅDFRI
Lutron
MQTT
MySensors
Nanoleaf
Nmap Tracker
OVO Energy
Rainforest Eagle-200
SimpliSafe
Smappee
Solar-Log
Supervisor
Tesla Powerwall
Toon
UpCloud
Uptime Robot
Wink
Xiaomi Miio
Z-Wave JS
Custom integrations: Cameras
Custom integrations: Sensors

All changes

Click to see all changes!

[@dependabot[bot]]: https://github.com/apps/dependabot [@dermotduffy]: https://github.com/dermotduffy [@dgomes]: https://github.com/dgomes [@ehendrix23]: https://github.com/ehendrix23 [@elupus]: https://github.com/elupus [@emontnemery]: https://github.com/emontnemery [@epenet]: https://github.com/epenet [@esev]: https://github.com/esev [@farmio]: https://github.com/farmio [@felipediel]: https://github.com/felipediel [@firstof9]: https://github.com/firstof9 [@flacjacket]: https://github.com/flacjacket [@frenck]: https://github.com/frenck [@gianklug]: https://github.com/gianklug [@giannello]: https://github.com/giannello [@gjong]: https://github.com/gjong [@gtdiehl]: https://github.com/gtdiehl [@hunterjm]: https://github.com/hunterjm [@janiversen]: https://github.com/janiversen [@janjurca]: https://github.com/janjurca [@jbouwh]: https://github.com/jbouwh [@jesserockz]: https://github.com/jesserockz [@jjlawren]: https://github.com/jjlawren [@jorgror]: https://github.com/jorgror [@jshank]: https://github.com/jshank [@klaasnicolaas]: https://github.com/klaasnicolaas [@ludeeus]: https://github.com/ludeeus [@lukewaite]: https://github.com/lukewaite [@maschel]: https://github.com/maschel [@mdz]: https://github.com/mdz [@meyerrj]: https://github.com/meyerrj [@mib1185]: https://github.com/mib1185 [@micha91]: https://github.com/micha91 [@milanmeu]: https://github.com/milanmeu [@mjg59]: https://github.com/mjg59 [@mkrasowski]: https://github.com/mkrasowski [@mplemay]: https://github.com/mplemay [@muchtall]: https://github.com/muchtall [@muppet3000]: https://github.com/muppet3000 [@natekspencer]: https://github.com/natekspencer [@nickovs]: https://github.com/nickovs [@nickstamat]: https://github.com/nickstamat [@nielstron]: https://github.com/nielstron [@ollo69]: https://github.com/ollo69 [@oxan]: https://github.com/oxan [@pdcemulator]: https://github.com/pdcemulator [@posixx]: https://github.com/posixx [@ppetru]: https://github.com/ppetru [@prwood80]: https://github.com/prwood80 [@pszafer]: https://github.com/pszafer [@pvizeli]: https://github.com/pvizeli [@r-t-s]: https://github.com/r-t-s [@rajlaud]: https://github.com/rajlaud [@raman325]: https://github.com/raman325 [@rdfurman]: https://github.com/rdfurman [@realPy]: https://github.com/realPy [@rikroe]: https://github.com/rikroe [@rjulius23]: https://github.com/rjulius23 [@rutkai]: https://github.com/rutkai [@rytilahti]: https://github.com/rytilahti [@samueltardieu]: https://github.com/samueltardieu [@scop]: https://github.com/scop [@serenewaffles]: https://github.com/serenewaffles [@slovdahl]: https://github.com/slovdahl [@squishykid]: https://github.com/squishykid [@starkillerOG]: https://github.com/starkillerOG [@thomasloven]: https://github.com/thomasloven [@timmo001]: https://github.com/timmo001 [@tkdrob]: https://github.com/tkdrob [@uvjustin]: https://github.com/uvjustin [@yuvalabou]: https://github.com/yuvalabou [@zhulik]: https://github.com/zhulik [@zoeisnowooze]: https://github.com/zoeisnowooze [abode docs]: /integrations/abode/ [actiontec docs]: /integrations/actiontec/ [adax docs]: /integrations/adax/ [adguard docs]: /integrations/adguard/ [advantage_air docs]: /integrations/advantage_air/ [aemet docs]: /integrations/aemet/ [airly docs]: /integrations/airly/ [airtouch4 docs]: /integrations/airtouch4/ [airvisual docs]: /integrations/airvisual/ [alarm_control_panel docs]: /integrations/alarm_control_panel/ [alexa docs]: /integrations/alexa/ [almond docs]: /integrations/almond/ [ambient_station docs]: /integrations/ambient_station/ [amcrest docs]: /integrations/amcrest/ [analytics docs]: /integrations/analytics/ [anthemav docs]: /integrations/anthemav/ [api docs]: /integrations/api/ [apprise docs]: /integrations/apprise/ [arest docs]: /integrations/arest/ [arlo docs]: /integrations/arlo/ [asuswrt docs]: /integrations/asuswrt/ [atag docs]: /integrations/atag/ [atome docs]: /integrations/atome/ [august docs]: /integrations/august/ [azure_event_hub docs]: /integrations/azure_event_hub/ [bbox docs]: /integrations/bbox/ [binary_sensor docs]: /integrations/binary_sensor/ [bitcoin docs]: /integrations/bitcoin/ [blink docs]: /integrations/blink/ [bme280 docs]: /integrations/bme280/ [bme680 docs]: /integrations/bme680/ [bmw_connected_drive docs]: /integrations/bmw_connected_drive/ [bond docs]: /integrations/bond/ [broadlink docs]: /integrations/broadlink/ [buienradar docs]: /integrations/buienradar/ [camera docs]: /integrations/camera/ [cloudflare docs]: /integrations/cloudflare/ [coinbase docs]: /integrations/coinbase/ [comed_hourly_pricing docs]: /integrations/comed_hourly_pricing/ [config docs]: /integrations/config/ [danfoss_air docs]: /integrations/danfoss_air/ [debugpy docs]: /integrations/debugpy/ [deconz docs]: /integrations/deconz/ [default_config docs]: /integrations/default_config/ [deluge docs]: /integrations/deluge/ [demo docs]: /integrations/demo/ [device_automation docs]: /integrations/device_automation/ [devolo_home_control docs]: /integrations/devolo_home_control/ [dht docs]: /integrations/dht/ [directv docs]: /integrations/directv/ [dlna_dmr docs]: /integrations/dlna_dmr/ [dovado docs]: /integrations/dovado/ [dsmr docs]: /integrations/dsmr/ [dsmr_reader docs]: /integrations/dsmr_reader/ [ecobee docs]: /integrations/ecobee/ [edl21 docs]: /integrations/edl21/ [emoncms docs]: /integrations/emoncms/ [emonitor docs]: /integrations/emonitor/ [emulated_kasa docs]: /integrations/emulated_kasa/ [energy docs]: /integrations/energy/ [enocean docs]: /integrations/enocean/ [enphase_envoy docs]: /integrations/enphase_envoy/ [envirophat docs]: /integrations/envirophat/ [epson docs]: /integrations/epson/ [esphome docs]: /integrations/esphome/ [fido docs]: /integrations/fido/ [filter docs]: /integrations/filter/ [fints docs]: /integrations/fints/ [fjaraskupan docs]: /integrations/fjaraskupan/ [flexit docs]: /integrations/flexit/ [flipr docs]: /integrations/flipr/ [flunearyou docs]: /integrations/flunearyou/ [folder_watcher docs]: /integrations/folder_watcher/ [foobot docs]: /integrations/foobot/ [forecast_solar docs]: /integrations/forecast_solar/ [fritz docs]: /integrations/fritz/ [fritzbox docs]: /integrations/fritzbox/ [fronius docs]: /integrations/fronius/ [frontend docs]: /integrations/frontend/ [gc100 docs]: /integrations/gc100/ [gios docs]: /integrations/gios/ [github docs]: /integrations/github/ [goalzero docs]: /integrations/goalzero/ [google docs]: /integrations/google/ [google_assistant docs]: /integrations/google_assistant/ [google_maps docs]: /integrations/google_maps/ [google_pubsub docs]: /integrations/google_pubsub/ [google_wifi docs]: /integrations/google_wifi/ [group docs]: /integrations/group/ [growatt_server docs]: /integrations/growatt_server/ [gtfs docs]: /integrations/gtfs/ [guardian docs]: /integrations/guardian/ [hassio docs]: /integrations/hassio/ [hdmi_cec docs]: /integrations/hdmi_cec/ [history docs]: /integrations/history/ [homeassistant docs]: /integrations/homeassistant/ [homekit docs]: /integrations/homekit/ [homekit_controller docs]: /integrations/homekit_controller/ [homematic docs]: /integrations/homematic/ [homematicip_cloud docs]: /integrations/homematicip_cloud/ [honeywell docs]: /integrations/honeywell/ [http docs]: /integrations/http/ [htu21d docs]: /integrations/htu21d/ [huawei_lte docs]: /integrations/huawei_lte/ [hue docs]: /integrations/hue/ [hunterdouglas_powerview docs]: /integrations/hunterdouglas_powerview/ [image_processing docs]: /integrations/image_processing/ [integration docs]: /integrations/integration/ [ios docs]: /integrations/ios/ [iotawatt docs]: /integrations/iotawatt/ [ipp docs]: /integrations/ipp/ [iqvia docs]: /integrations/iqvia/ [jewish_calendar docs]: /integrations/jewish_calendar/ [juicenet docs]: /integrations/juicenet/ [keba docs]: /integrations/keba/ [knx docs]: /integrations/knx/ [kostal_plenticore docs]: /integrations/kostal_plenticore/ [launch_library docs]: /integrations/launch_library/ [lifx docs]: /integrations/lifx/ [light docs]: /integrations/light/ [litterrobot docs]: /integrations/litterrobot/ [logi_circle docs]: /integrations/logi_circle/ [lutron docs]: /integrations/lutron/ [lyric docs]: /integrations/lyric/ [magicseaweed docs]: /integrations/magicseaweed/ [manual_mqtt docs]: /integrations/manual_mqtt/ [marytts docs]: /integrations/marytts/ [matrix docs]: /integrations/matrix/ [melcloud docs]: /integrations/melcloud/ [mhz19 docs]: /integrations/mhz19/ [miflora docs]: /integrations/miflora/ [mill docs]: /integrations/mill/ [mitemp_bt docs]: /integrations/mitemp_bt/ [modbus docs]: /integrations/modbus/ [motioneye docs]: /integrations/motioneye/ [mqtt docs]: /integrations/mqtt/ [myq docs]: /integrations/myq/ [mysensors docs]: /integrations/mysensors/ [nam docs]: /integrations/nam/ [nanoleaf docs]: /integrations/nanoleaf/ [neato docs]: /integrations/neato/ [nest docs]: /integrations/nest/ [netatmo docs]: /integrations/netatmo/ [netio docs]: /integrations/netio/ [network docs]: /integrations/network/ [nextbus docs]: /integrations/nextbus/ [nmap_tracker docs]: /integrations/nmap_tracker/ [norway_air docs]: /integrations/norway_air/ [notion docs]: /integrations/notion/ [number docs]: /integrations/number/ [nut docs]: /integrations/nut/ [nzbget docs]: /integrations/nzbget/ [ombi docs]: /integrations/ombi/ [onewire docs]: /integrations/onewire/ [onvif docs]: /integrations/onvif/ [openevse docs]: /integrations/openevse/ [openuv docs]: /integrations/openuv/ [ovo_energy docs]: /integrations/ovo_energy/ [p1_monitor docs]: /integrations/p1_monitor/ [panasonic_viera docs]: /integrations/panasonic_viera/ [philips_js docs]: /integrations/philips_js/ [pi_hole docs]: /integrations/pi_hole/ [pilight docs]: /integrations/pilight/ [plex docs]: /integrations/plex/ [point docs]: /integrations/point/ [powerwall docs]: /integrations/powerwall/ [prometheus docs]: /integrations/prometheus/ [prosegur docs]: /integrations/prosegur/ [proxmoxve docs]: /integrations/proxmoxve/ [pushbullet docs]: /integrations/pushbullet/ [pvoutput docs]: /integrations/pvoutput/ [python_script docs]: /integrations/python_script/ [qbittorrent docs]: /integrations/qbittorrent/ [qnap docs]: /integrations/qnap/ [rachio docs]: /integrations/rachio/ [radarr docs]: /integrations/radarr/ [rainforest_eagle docs]: /integrations/rainforest_eagle/ [rainmachine docs]: /integrations/rainmachine/ [recollect_waste docs]: /integrations/recollect_waste/ [recorder docs]: /integrations/recorder/ [reddit docs]: /integrations/reddit/ [renault docs]: /integrations/renault/ [rfxtrx docs]: /integrations/rfxtrx/ [ring docs]: /integrations/ring/ [rituals_perfume_genie docs]: /integrations/rituals_perfume_genie/ [roomba docs]: /integrations/roomba/ [rtorrent docs]: /integrations/rtorrent/ [sabnzbd docs]: /integrations/sabnzbd/ [saj docs]: /integrations/saj/ [script docs]: /integrations/script/ [select docs]: /integrations/select/ [sense docs]: /integrations/sense/ [sensehat docs]: /integrations/sensehat/ [sensor docs]: /integrations/sensor/ [sesame docs]: /integrations/sesame/ [shelly docs]: /integrations/shelly/ [shopping_list docs]: /integrations/shopping_list/ [sht31 docs]: /integrations/sht31/ [simplisafe docs]: /integrations/simplisafe/ [siren docs]: /integrations/siren/ [sma docs]: /integrations/sma/ [smappee docs]: /integrations/smappee/ [smart_meter_texas docs]: /integrations/smart_meter_texas/ [smartthings docs]: /integrations/smartthings/ [smarty docs]: /integrations/smarty/ [sms docs]: /integrations/sms/ [solaredge docs]: /integrations/solaredge/ [solaredge_local docs]: /integrations/solaredge_local/ [solarlog docs]: /integrations/solarlog/ [solax docs]: /integrations/solax/ [sonarr docs]: /integrations/sonarr/ [sonos docs]: /integrations/sonos/ [speedtestdotnet docs]: /integrations/speedtestdotnet/ [spider docs]: /integrations/spider/ [sql docs]: /integrations/sql/ [squeezebox docs]: /integrations/squeezebox/ [ssdp docs]: /integrations/ssdp/ [starline docs]: /integrations/starline/ [startca docs]: /integrations/startca/ [stream docs]: /integrations/stream/ [surepetcare docs]: /integrations/surepetcare/ [switchbot docs]: /integrations/switchbot/ [switcher_kis docs]: /integrations/switcher_kis/ [syncthru docs]: /integrations/syncthru/ [synology_dsm docs]: /integrations/synology_dsm/ [synology_srm docs]: /integrations/synology_srm/ [system_bridge docs]: /integrations/system_bridge/ [tado docs]: /integrations/tado/ [tasmota docs]: /integrations/tasmota/ [tautulli docs]: /integrations/tautulli/ [temper docs]: /integrations/temper/ [template docs]: /integrations/template/ [thinkingcleaner docs]: /integrations/thinkingcleaner/ [tibber docs]: /integrations/tibber/ [timer docs]: /integrations/timer/ [todoist docs]: /integrations/todoist/ [toon docs]: /integrations/toon/ [tplink docs]: /integrations/tplink/ [traccar docs]: /integrations/traccar/ [tractive docs]: /integrations/tractive/ [tradfri docs]: /integrations/tradfri/ [trafikverket_weatherstation docs]: /integrations/trafikverket_weatherstation/ [transmission docs]: /integrations/transmission/ [travisci docs]: /integrations/travisci/ [tuya docs]: /integrations/tuya/ [universal docs]: /integrations/universal/ [upcloud docs]: /integrations/upcloud/ [updater docs]: /integrations/updater/ [upnp docs]: /integrations/upnp/ [uptimerobot docs]: /integrations/uptimerobot/ [usb docs]: /integrations/usb/ [utility_meter docs]: /integrations/utility_meter/ [vallox docs]: /integrations/vallox/ [velbus docs]: /integrations/velbus/ [version docs]: /integrations/version/ [volkszaehler docs]: /integrations/volkszaehler/ [volumio docs]: /integrations/volumio/ [watson_tts docs]: /integrations/watson_tts/ [webostv docs]: /integrations/webostv/ [wemo docs]: /integrations/wemo/ [wink docs]: /integrations/wink/ [wirelesstag docs]: /integrations/wirelesstag/ [withings docs]: /integrations/withings/ [wolflink docs]: /integrations/wolflink/ [xiaomi_miio docs]: /integrations/xiaomi_miio/ [yamaha docs]: /integrations/yamaha/ [yamaha_musiccast docs]: /integrations/yamaha_musiccast/ [yeelight docs]: /integrations/yeelight/ [youless docs]: /integrations/youless/ [zamg docs]: /integrations/zamg/ [zeroconf docs]: /integrations/zeroconf/ [zerproc docs]: /integrations/zerproc/ [zha docs]: /integrations/zha/ [zwave_js docs]: /integrations/zwave_js/



from Home Assistant https://www.home-assistant.io/blog/2021/09/01/release-20219/
via IFTTT

Comments

Popular posts from this blog

Home Assistant OS 10: Better memory management and new board support

Safe Opening and Combination Changes