Skip to content

Releases: anotherjulien/MyHOME

0.9.3

11 Mar 14:21
Compare
Choose a tag to compare
  • Replaced deprecated constants
  • Fix for climate temperature offset bug
  • Tentative fix for occasional errors related to the purging of devices removed from configuration

0.9.2

27 Mar 10:08
Compare
Choose a tag to compare

Some minor new features in this release:

  • Possibility to set entity_name in the configuration for light, switch, cover and binary sensor manually (in adherence to the new entity naming standard)
  • Possibility to set icon in the configuration for light and switch (the icon needs to be in the same mdi:xxxx format expected everywhere else in HA)
  • Possibility to set a different icon_on in the configuration for light and switch(probably more useful for switch as it allows you to have different icons when the device is on of off)

0.9.1

15 Mar 07:53
Compare
Choose a tag to compare

Bug fixes:

  • Fixed config validation for binary_sensors (especially with power as device_class)
  • Fixed config validation for Central unit of 4 zones heating system

Improvements:

  • Better entity specific naming of sensor and binary_sensor entities based off their device_class

0.9.0

28 Feb 20:37
Compare
Choose a tag to compare

Attention: this release requires a new config file.
It is not directly backwards compatible with previous versions.
Do not simply click update if you did not prepare your configuration.

New major features include:

  • support for multiple gateways
  • support for bus extensions
  • many bug fixes and general improvements

0.8.7

14 Feb 09:12
Compare
Choose a tag to compare

This will likely be the last update of the 0.8 branch.
It contains the last few bug fixes for:

  • HVACAction modes (Thank you @IAmVespa !)
  • Error 500 sometime poping up during setup or SSDP discovery.

After this release, the 0.9 branch will not be backwards compatible and will need a new configuration structure.

0.8.6

11 Sep 09:09
Compare
Choose a tag to compare

This version compiles the various bug fixes published on the master branch since the last release.

KNOWN ISSUE:
Startup issues happen since Home Assistant 2022.08. Some platforms will randomly not load on startup.
It is necessary to reload the integration once HA has finished starting. This can be done with an automation if necessary.

0.8.5

19 Oct 18:10
Compare
Choose a tag to compare

Fixed a missing unused async_update method for Auxiliary sensors

0.8.4

19 Oct 15:24
Compare
Choose a tag to compare

Bug fixes in this version:

  • FIxed AUX sensors not being loaded from the configuration.
  • Fixed error message that could appear at startup for climate zones when a "local offset" message was received before the zone's "set temperature" was known.
  • Fixed secondary temperature sensors not being loaded from the configuration.
  • Fixed error for dimmable lights that do not respond to requests for DIMENSION 4 and did not correctly report their status in some cases.
  • Fixed climate central unit not being correctly identified leading to some values not being reported.
  • Fixed (in OWNd) a bug related to misinterpreted messages that resulted in apparently randomly attributed "set temperature" for some climate zones.

0.8.3

22 Sep 09:04
Compare
Choose a tag to compare

Added support for WHO 1 light and motion sensors.

This includes among others references: 048822, HC/HS/HD4658, L/N/NT4658N, HC/HS/HD4659, L/N/NT4659N, K4659, etc...
The expected configuration is the following:

binary_sensor:
  - platform: myhome
    devices:
      office_motion:
        who: '1'
        where: '0312'
        name: Bureau
        class: motion
        manufacturer: Legrand
        model: 048822

sensor:
  - platform: myhome
    devices:
      office_illuminance:
        where: '0312'
        name: Bureau
        class: illuminance
        manufacturer: Legrand
        model: 048822

Please note: in order for the data to be sent on the bus by the sensor, it must be configured in either "Scenarios daylight sensor" mode, "Scenarios presence sensor" mode, or "Scenarios daylight and presence sensor" mode.
If your sensor is configured to autonomously turn on and off a light or light group, then it will not send it's values on the bus at all.

Entity/device garbage collection

If you remove an entity from your configuration file, the entity will now be removed from Home-Assistant. If this leaves a device with no associated entity (even inactive ones), then the device will be removed as well.

0.8.2

03 Sep 08:40
Compare
Choose a tag to compare
  • Fixed an unnecessary error message when loading the component with unused platforms
    • (For example, no more error message on startup if you don't use climate, cover, switch, etc...
  • Fixed sensor compatibility with Home Assistant 2021.9
    • Switched sensor entities from _attr_state and _attr_unit_of_measurement to _attr_native_value and _attr_native_unit_of_measurement
    • Switched energy sensors _attr_state_class from STATE_CLASS_MEASUREMENT to STATE_CLASS_TOTAL_INCREASING
    • Removed reliance on _attr_last_reset which is deprecated