Skip to content

Releases: GeorgeSG/philips_airpurifier_http

1.4.2

06 May 15:48
Compare
Choose a tag to compare

Change device_state_attributes to extra_state_attributes

1.4.1

17 Apr 14:34
813d129
Compare
Choose a tag to compare

FIxes manual mode setting - #7 (@Plevuus)

1.4.0

15 Apr 21:27
Compare
Choose a tag to compare

Per-device configuration

  • Adds initial support for per-device configuration (#3)
  • Adds support for sending "Manual" mode when sending custom speed
  • Adds custom configuration for device models: AC2729_10, AC2889_10, AC3259_10

1.3.0

14 Apr 22:15
Compare
Choose a tag to compare

Breaking Change - component renamed to philips_airpurifier_http!

The component has been (at least temporarily) renamed to philips_airpurifier_http to indicate it does not support COAP devices and to avoid name collision with other custom components that support COAP devices.

Updating from version 1.2.0

  1. Update the platform in your yaml config from platform: philips_airpurifier to platform: philips_airpurifier_http.
  2. Update the usages of all philips_airpurifier services. The domain is now philips_airpurifier_http. For example, update philips_airpurifier.set_child_lock to philips_airpurifier_http.set_child_lock.
  3. (optional) Remove the old philips_airpurifier folder from your custom_components.

1.2.0

06 Apr 19:59
9ca6cf7
Compare
Choose a tag to compare

Adds the set_used_index service - thanks to @Plevuus

1.1.2

31 Mar 17:13
Compare
Choose a tag to compare

Fix percentage error when turning off

1.1.1

30 Mar 21:49
Compare
Choose a tag to compare

Remove unique_id. It's causing more damage than good 😅

1.1.0

30 Mar 21:22
Compare
Choose a tag to compare

New Home Assistant Fan services & state

Implements the new Home Assistant Fan services:

  • Preset Mode
  • Percentage

Example usage of set_preset_mode:

service: fan.set_preset_mode
entity_id: fan.living_room
data:
  preset_mode: "auto"

The supported preset modes are: auto, allergen, sleep, manual, bacteria, night (if your device supports them).

Example usage of set_percentage:

service: fan.set_percentage
entity_id: fan.living_room
data:
  percentage: 50

Percentage is essentially mapped to 5 speeds: off, silent, speed 1, speed 2, speed 3, turbo.

Removed

Removes speed and set_speed - they are deprecated in Home Assistant now.

Misc

  • Sets version in manifest.json so Home Assistant doesn't complain
  • Updates py-air-control version