Skip to content

Files

Latest commit

 

History

History
85 lines (67 loc) · 2.88 KB

046677552343.md

File metadata and controls

85 lines (67 loc) · 2.88 KB
title description
Philips 046677552343 control via MQTT
Integrate your Philips 046677552343 via Zigbee2MQTT with whatever smart home infrastructure you are using without the vendors bridge or gateway.

To contribute to this page, edit the following file

Philips 046677552343

| Model | 046677552343 | | Vendor | Philips | | Description | Hue smart plug bluetooth | | Supports | on/off | | Picture | Philips 046677552343 |

Notes

Power-on behavior

Allows to set the power-on behavior of the plug/bulb. Note that this requires at least November/December '18 firmware update of the device.

{
    "hue_power_on_behavior": "on",          // default, on, off, recover
    "hue_power_on_brightness": 125,         // same values as brightness
    "hue_power_on_color_temperature": 280,  // same values as color_temp
    "hue_power_on_color": "#0000FF",        // color in hex notation, e.g. #0000FF = blue

}
Attribute Value Description
default reset to factory default value
on bulb on after power loss with configured brightness, color-temperature and color
off bulb off after power loss
recover last running state after power loss

Rules:

  • hue_power_on_behavior value always has to be provided
  • hue_power_on_brightness, hue_power_on_color_temperature and hue_power_on_color can only be provided when hue_power_on_behavior = on
  • hue_power_on_color_temperature and hue_power_on_color cannot be provided together, only one can be set
  • When setting hue_power_on_behavior = on, any not provided values will be reset to their factory defaults

OTA updates

This device supports OTA updates, for more information see OTA updates.

Manual Home Assistant configuration

Although Home Assistant integration through MQTT discovery is preferred, manual integration is possible with the following configuration:

{% raw %}

switch:
  - platform: "mqtt"
    state_topic: "zigbee2mqtt/<FRIENDLY_NAME>"
    availability_topic: "zigbee2mqtt/bridge/state"
    payload_off: "OFF"
    payload_on: "ON"
    value_template: "{{ value_json.state }}"
    command_topic: "zigbee2mqtt/<FRIENDLY_NAME>/set"

sensor:
  - platform: "mqtt"
    state_topic: "zigbee2mqtt/<FRIENDLY_NAME>"
    availability_topic: "zigbee2mqtt/bridge/state"
    unit_of_measurement: "lqi"
    value_template: "{{ value_json.linkquality }}"
    icon: "mdi:signal"

binary_sensor:
  - platform: "mqtt"
    state_topic: "zigbee2mqtt/<FRIENDLY_NAME>"
    availability_topic: "zigbee2mqtt/bridge/state"
    payload_on: true
    payload_off: false
    value_template: "{{ value_json.update_available}}"

{% endraw %}