Skip to content

Releases: blka/smartthings

v1.1.2

18 Jun 15:59

Choose a tag to compare

SmartThings WindFree — v1.1.2

Compatibility fix for Home Assistant 2026.6.3. Beep and display-lighting switches failed to load after the HA core update.

Bug Fixes

  • Execute switches broken on HA 2026.6.3Entity.async_get_last_state() was removed from the base Entity class in HA 2026.6.3. SmartThingsExecuteSwitch called it in async_added_to_hass(), raising AttributeError during entity setup so the beep and display-lighting switches never appeared. Fixed by inheriting from RestoreEntity (homeassistant.helpers.restore_state), which provides async_get_last_state().
  • Python 3 except syntaxexcept KeyError, TypeError, AttributeError: (and the equivalent in application_credentials.py) only caught the first exception and is invalid Python 3 syntax. Corrected to except (KeyError, TypeError, AttributeError):. This fix was intended for v1.1.1 but had not actually persisted.

Requirements

  • Home Assistant ≥ 2026.6.0
  • pysmartthings ≥ 3.7.3

v1.1.1

01 Jun 09:24

Choose a tag to compare

SmartThings WindFree — v1.1.1

Custom Home Assistant integration for Samsung WindFree air conditioners (ARTIK051 platform), with full OCF execute
support and WindFree mode.

Full Changelog: v1.0.1...v1.1.1