mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-05-04 18:18:58 +00:00
2.2 KiB
2.2 KiB
layout, title, description, date, sidebar, comments, sharing, footer
layout | title | description | date | sidebar | comments | sharing | footer |
---|---|---|---|---|---|---|---|
page | Checklist for creating a platform | A list of things to pay attention to when code reviewing a platform. | 2017-01-15 14:09 -0800 | true | false | true | true |
A checklist of things to do when you're adding a new platform.
{% linkable_title 1. Requirements %}
- Requirement version pinned:
REQUIREMENTS = ['phue==0.8.1']
- If requirement hosted on GitHub:
- Point at a zip archive of a release tag or commit SHA.
- Add version found in zip-archive as hash to url.
REQUIREMENTS = [
'http://github.com/technicalpickles/python-nest'
'/archive/e6c9d56a8df455d4d7746389811f2c1387e8cb33.zip'
'#python-nest==3.0.3']
{% linkable_title 2. Dependencies %}
- If you depend on a component for the connection, add it to your dependencies:
DEPENDENCIES = ['nest']
{% linkable_title 3. Configuration %}
- Volutpuous schema present for config validation
- Voluptuous schema extends schema from component
(e.g.light.hue.PLATFORM_SCHEMA
extendslight.PLATFORM_SCHEMA
) - Default parameters specified in voluptuous schema, not in
setup_platform(…)
- Schema using as many generic config keys as possible from
homeassistant.const
import voluptuous as vol
from homeassistant.const import CONF_FILENAME, CONF_HOST
from homeassistant.components.light import PLATFORM_SCHEMA
import homeassistant.helpers.config_validation as cv
CONF_ALLOW_UNREACHABLE = 'allow_unreachable'
DEFAULT_UNREACHABLE = False
PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend({
vol.Required(CONF_HOST): cv.string,
vol.Optional(CONF_ALLOW_UNREACHABLE,
default=DEFAULT_UNREACHABLE): cv.boolean,
vol.Optional(CONF_FILENAME): cv.string,
})
{% linkable_title 4. Setup Platform %}
- Test if passed in info (user/pass/host etc.) works.
- Group your calls to
add_devices
if possible. - If platform adds extra services, format should be
<component>.<platform>_<service name>
.
{% linkable_title 5. Entity %}
- Extend entity from component, e.g.
class HueLight(Light)
- Do not call
update()
in constructor, useadd_devices(devices, True)
instead. - Do not do any I/O inside properties. Cache values inside
update()
instead.