syssi / philipslight

Xiaomi Philips Lights integration for Home Assistant
Apache License 2.0
70 stars 19 forks source link
custom-component hacktoberfest home-assistant light miio miio-protocol xiaomi xiaomi-philips-lights

Xiaomi Philips Lights

GitHub actions GitHub stars GitHub forks GitHub watchers "Buy Me A Coffee"

The component allows you to control the state of your Xiaomi Philips LED Ball Lamp, Xiaomi Philips LED Ceiling Lamp and Xiaomi Philips Eyecare Smart Lamp 2.

Thanks to Rytilahti for all the work.

Please follow the instructions on Retrieving the Access Token to get the API token to use in the configuration.yaml file.

Supported devices

Name Model Model no. Specs
Philips Smart LED Ball philips.light.bulb 9290012800 E27, 450lm, 3000K-5700K, 6.5W (12x0.37W / LED)
Philips Smart LED Bulb (Dimmable) philips.light.hbulb 9290020093 E27, 806lm, 2700K, 9W
Philips Smart LED Ceiling Lamp philips.light.ceiling
Philips EyeCare Smart Lamp philips.light.sread1 ESP8266 version
Philips EyeCare Smart Lamp Gen2 philips.light.sread2 ESP32 version
Philips Moonlight Bedside Lamp philips.light.moonlight
Philips LED Ceiling Light 620mm philips.light.zyceiling
Philips Zhirui Smart LED Bulb E14 Candle Lamp philips.light.candle 9290018615 scrub, E14, 200lm, 3000K-5700K, 4x0.25W CW + 4x0.25W WW / LED
Philips Zhirui Smart LED Bulb E14 Candle Lamp philips.light.candle2 crystal, E14, 200lm, 3000K-5700K, 4x0.25W CW + 4x0.25W WW / LED
Philips Zhirui Desk Lamp philips.light.mono1
Philips Zhirui Downlight philips.light.downlight

Features

Philips LED Ball Lamp

Philips LED Ceiling Lamp

Philips Eyecare Smart Lamp 2

Philips Moonlight Bedside Lamp

Install

You can install this custom component by adding this repository (https://github.com/syssi/philipslight) to HACS in the settings menu of HACS first. You will find the custom component in the integration menu afterwards, look for 'Xiaomi Philips Lights Integration'. Alternatively, you can install it manually by copying the custom_component folder to your Home Assistant configuration folder.

Setup

# configuration.yaml

light:
  - platform: xiaomi_miio_philipslight
    name: Xiaomi Philips Smart LED Ball
    host: 192.168.130.67
    token: da548d86f55996413d82eea94279d2ff
    model: philips.light.bulb
  - platform: xiaomi_miio_philipslight
    name: Xiaomi Philips Smart LED Ceiling Lamp
    host: 192.168.130.68
    token: 439e1a89ee5648d20482afa7839ef2ee
    model: philips.light.ceiling
  - platform: xiaomi_miio_philipslight
    name: Xiaomi Philips EyeCare Smart Lamp 2
    host: 192.168.130.69
    token: e8b19da37825a3056e84c522f05efce0
    model: philips.light.sread1

Configuration variables:

Debugging

If the custom component doesn't work out of the box for your device please update your configuration to increase the log level:

logger:
  default: warn
  logs:
    custom_components.xiaomi_miio_philipslight: debug
    miio: debug

Platform services

Service xiaomi_miio_philipslight.light_set_scene

Set one of the 4 available fixed scenes.

Service data attribute Optional Description
entity_id yes Only act on a specific light. Else targets all.
scene no Scene, between 1 and 4.

Service xiaomi_miio_philipslight.light_set_delayed_turn_off

Delayed turn off.

Service data attribute Optional Description
entity_id yes Only act on a specific light. Else targets all.
time_period no Time period for the delayed turn off. Valid values are 5, '0:05', {'minutes': 5}

Service xiaomi_miio_philipslight.light_reminder_on (Eyecare Smart Lamp 2 only)

Enable the eye fatigue reminder/notification.

Service data attribute Optional Description
entity_id yes Only act on a specific light. Else targets all.

Service xiaomi_miio_philipslight.light_reminder_off (Eyecare Smart Lamp 2 only)

Disable the eye fatigue reminder/notification.

Service data attribute Optional Description
entity_id yes Only act on a specific light. Else targets all.

Service xiaomi_miio_philipslight.light_night_light_mode_on (Eyecare Smart Lamp 2 only)

Turn the smart night light mode on.

Service data attribute Optional Description
entity_id yes Only act on a specific light. Else targets all.

Service xiaomi_miio_philipslight.light_night_light_mode_off (Eyecare Smart Lamp 2 only)

Turn the smart night light mode off.

Service data attribute Optional Description
entity_id yes Only act on a specific light. Else targets all.

Service xiaomi_miio_philipslight.light_eyecare_mode_on (Eyecare Smart Lamp 2 only)

Turn the eyecare mode on.

Service data attribute Optional Description
entity_id yes Only act on a specific light. Else targets all.

Service xiaomi_miio_philipslight.light_eyecare_mode_off (Eyecare Smart Lamp 2 only)

Turn the eyecare mode off.

Service data attribute Optional Description
entity_id yes Only act on a specific light. Else targets all.