Skip to content

Latest commit

 

History

History
129 lines (102 loc) · 4.97 KB

8718699673147.md

File metadata and controls

129 lines (102 loc) · 4.97 KB
title description
Philips 8718699673147 control via MQTT
Integrate your Philips 8718699673147 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 8718699673147

| Model | 8718699673147 | | Vendor | Philips | | Description | Hue white A60 bulb E27 bluetooth | | Supports | on/off, brightness, power-on behavior | | Picture | Philips 8718699673147 |

Notes

Pairing

Factory resetting a Hue bulb can be accomplished in 5 ways. After resetting the bulb will automatically connect.

Touchlink factory reset

See Touchlink

Hue bridge

When the bulb is still connected to the Hue bridge, you can simply factory reset the bulb by removing it from the bridge via the Hue app. Orphaned bulbs (configured to connect to a non-existing zigbee network) can be adopted by a Hue bridge by entering the 6 character serial number in the Philips Hue app.

Hue dimmer switch

VIDEO: Factory reset a Hue bulb with Hue dimmer switch.

Bluetooth (if supported by device)

Install the Philips Hue Bluetooth app for Android or iOS. You can use the app to trigger a factory reset on a paired light. (Note: The light will only be in bluetooth pairing (Note: The light will only be in bluetooth pairing mode for a couple of minutes after poweron)

TRADFRI remote control

This may also be possible with the Tradfri Remote Control by pressing and holding the reset button on the bottom of the remote (next to the battery). This may not always work, even if the Hue bulb starts flashing.

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

Device type specific configuration

How to use device type specific configuration

  • transition: Controls the transition time (in seconds) of on/off, brightness, color temperature (if applicable) and color (if applicable) changes. Defaults to 0 (no transition). Note that this value is overridden if a transition value is present in the MQTT command payload.

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 %}

light:
  - platform: "mqtt"
    state_topic: "zigbee2mqtt/<FRIENDLY_NAME>"
    availability_topic: "zigbee2mqtt/bridge/state"
    brightness: true
    color_temp: false
    xy: false
    hs: false
    schema: "json"
    command_topic: "zigbee2mqtt/<FRIENDLY_NAME>/set"
    brightness_scale: 254
    effect: true
    effect_list: 
      - "blink"
      - "breathe"
      - "okay"
      - "channel_change"
      - "finish_effect"
      - "stop_effect"

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 %}