core/homeassistant/helpers
Klaudiusz Staniek d3df96a8de Added setting cover tilt position in scene (#15255)
## Description:
This feature adds possibly of setting tilt_position in scene for covers.

**Related issue (if applicable):** fixes #<home-assistant issue number goes here>

**Pull request in [home-assistant.github.io](https://github.com/home-assistant/home-assistant.github.io) with documentation (if applicable):** home-assistant/home-assistant.github.io#<home-assistant.github.io PR number goes here>

## Example entry for `configuration.yaml` (if applicable):
```yaml
scene:
  - name: Close Cover Tilt
    entities:
      cover.c_office_north:
        tilt_position: 0

  - name: Open Cover Tilt
    entities:
      cover.c_office_north:
        tilt_position: 100
```

## Checklist:
  - [x] The code change is tested and works locally.
  - [x] Local tests pass with `tox`. **Your PR cannot be merged unless tests pass**

If user exposed functionality or configuration variables are added/changed:
  - [ ] Documentation added/updated in [home-assistant.github.io](https://github.com/home-assistant/home-assistant.github.io)

If the code communicates with devices, web services, or third-party tools:
  - [ ] New dependencies have been added to the `REQUIREMENTS` variable ([example][ex-requir]).
  - [ ] New dependencies are only imported inside functions that use them ([example][ex-import]).
  - [ ] New or updated dependencies have been added to `requirements_all.txt` by running `script/gen_requirements_all.py`.
  - [ ] New files were added to `.coveragerc`.

If the code does not interact with devices:
  - [ ] Tests have been added to verify that the new code works.

[ex-requir]: https://github.com/home-assistant/home-assistant/blob/dev/homeassistant/components/keyboard.py#L14
[ex-import]: https://github.com/home-assistant/home-assistant/blob/dev/homeassistant/components/keyboard.py#L54
2018-07-02 12:44:36 +03:00
..
__init__.py Lint cleanup (#15103) 2018-06-25 13:05:07 -04:00
aiohttp_client.py Lint cleanup (#15103) 2018-06-25 13:05:07 -04:00
condition.py Update condition.py (#15021) 2018-06-19 13:26:52 +02:00
config_entry_flow.py Add config entry for Sonos + Cast (#14955) 2018-06-14 15:17:54 -04:00
config_validation.py Matrix Chatbot (#13355) 2018-05-05 10:00:36 -04:00
data_entry_flow.py Backend tweaks to make authorization work (#14339) 2018-05-10 10:38:11 +02:00
deprecation.py Spelling fixes (#12138) 2018-02-02 22:35:34 +01:00
discovery.py Refactor Hue: phue -> aiohue (#13043) 2018-03-16 20:27:05 -07:00
dispatcher.py Rename homeassistant.util.async to .async_ (#13088) 2018-03-11 10:01:12 -07:00
entity.py Lint cleanup (#15103) 2018-06-25 13:05:07 -04:00
entity_component.py Adhere to scan_interval in platforms when setup via config entry (#14969) 2018-06-15 16:59:13 +02:00
entity_platform.py Bugfix empty entity lists (#15035) 2018-06-18 09:22:52 -04:00
entity_registry.py Lint cleanup (#15103) 2018-06-25 13:05:07 -04:00
entity_values.py Simplify customize (#6007) 2017-02-15 19:47:30 -08:00
entityfilter.py Upgrade pylint to 1.8.2 (#12274) 2018-02-11 09:20:28 -08:00
event.py Lint cleanup (#15103) 2018-06-25 13:05:07 -04:00
icon.py Upgrade pylint to 1.8.2 (#12274) 2018-02-11 09:20:28 -08:00
intent.py allow extra slot values in intents (#15246) 2018-07-01 11:51:40 -04:00
location.py Async migration device_tracker (#4406) 2016-11-18 23:35:08 +01:00
restore_state.py Python 3.5 async with (#13283) 2018-03-17 12:27:21 +01:00
script.py Log invalid templates in script delays (#13423) 2018-03-25 01:12:26 +01:00
service.py Lint cleanups (#15243) 2018-07-01 11:57:01 -04:00
signal.py RFC: Use bind_hass for helpers (#9745) 2017-10-08 08:17:54 -07:00
state.py Added setting cover tilt position in scene (#15255) 2018-07-02 12:44:36 +03:00
storage.py Storage auth (#15192) 2018-06-28 22:14:26 -04:00
sun.py RFC: Use bind_hass for helpers (#9745) 2017-10-08 08:17:54 -07:00
temperature.py Round humidity for display purposes (#12766) 2018-02-28 10:59:47 -08:00
template.py Custom component loading cleanup (#14211) 2018-05-01 20:57:30 +02:00
translation.py Lint cleanups (#15243) 2018-07-01 11:57:01 -04:00
typing.py MQTT Static Typing (#12433) 2018-02-28 22:59:14 +01:00