Add placeholders for entities

This commit is contained in:
Paulus Schoutsen 2018-05-30 23:21:41 -04:00
parent 001705fba3
commit 5bb72bc696
10 changed files with 153 additions and 1 deletions

16
docs/entity_climate.md Normal file
View File

@ -0,0 +1,16 @@
---
title: Climate Entity
sidebar_label: Climate
---
> This entry is incomplete. Contribution welcome.
## Properties
> Properties should always only return information from memory and not do I/O (like network requests). Implement `update()` or `async_update()` to fetch data.
| Name | Type | Default | Description
| ---- | ---- | ------- | -----------
## Methods

16
docs/entity_cover.md Normal file
View File

@ -0,0 +1,16 @@
---
title: Cover Entity
sidebar_label: Cover
---
> This entry is incomplete. Contribution welcome.
## Properties
> Properties should always only return information from memory and not do I/O (like network requests). Implement `update()` or `async_update()` to fetch data.
| Name | Type | Default | Description
| ---- | ---- | ------- | -----------
## Methods

16
docs/entity_fan.md Normal file
View File

@ -0,0 +1,16 @@
---
title: Fan Entity
sidebar_label: Fan
---
> This entry is incomplete. Contribution welcome.
## Properties
> Properties should always only return information from memory and not do I/O (like network requests). Implement `update()` or `async_update()` to fetch data.
| Name | Type | Default | Description
| ---- | ---- | ------- | -----------
## Methods

16
docs/entity_light.md Normal file
View File

@ -0,0 +1,16 @@
---
title: Light Entity
sidebar_label: Light
---
> This entry is incomplete. Contribution welcome.
## Properties
> Properties should always only return information from memory and not do I/O (like network requests). Implement `update()` or `async_update()` to fetch data.
| Name | Type | Default | Description
| ---- | ---- | ------- | -----------
## Methods

16
docs/entity_lock.md Normal file
View File

@ -0,0 +1,16 @@
---
title: Lock Entity
sidebar_label: Lock
---
> This entry is incomplete. Contribution welcome.
## Properties
> Properties should always only return information from memory and not do I/O (like network requests). Implement `update()` or `async_update()` to fetch data.
| Name | Type | Default | Description
| ---- | ---- | ------- | -----------
## Methods

View File

@ -0,0 +1,16 @@
---
title: Media Player Entity
sidebar_label: Media Player
---
> This entry is incomplete. Contribution welcome.
## Properties
> Properties should always only return information from memory and not do I/O (like network requests). Implement `update()` or `async_update()` to fetch data.
| Name | Type | Default | Description
| ---- | ---- | ------- | -----------
## Methods

16
docs/entity_remote.md Normal file
View File

@ -0,0 +1,16 @@
---
title: Remote Entity
sidebar_label: Remote
---
> This entry is incomplete. Contribution welcome.
## Properties
> Properties should always only return information from memory and not do I/O (like network requests). Implement `update()` or `async_update()` to fetch data.
| Name | Type | Default | Description
| ---- | ---- | ------- | -----------
## Methods

16
docs/entity_vacuum.md Normal file
View File

@ -0,0 +1,16 @@
---
title: Vacuum Entity
sidebar_label: Vacuum
---
> This entry is incomplete. Contribution welcome.
## Properties
> Properties should always only return information from memory and not do I/O (like network requests). Implement `update()` or `async_update()` to fetch data.
| Name | Type | Default | Description
| ---- | ---- | ------- | -----------
## Methods

View File

@ -52,12 +52,28 @@
"development_validation": "Validate the input",
"entity_binary_sensor": "Binary Sensor Entity",
"Binary Sensor": "Binary Sensor",
"entity_climate": "Climate Entity",
"Climate": "Climate",
"entity_cover": "Cover Entity",
"Cover": "Cover",
"entity_fan": "Fan Entity",
"Fan": "Fan",
"entity_index": "Entity",
"entity_light": "Light Entity",
"Light": "Light",
"entity_lock": "Lock Entity",
"Lock": "Lock",
"entity_media_player": "Media Player Entity",
"Media Player": "Media Player",
"entity_registry_index": "Entity Registry",
"entity_remote": "Remote Entity",
"Remote": "Remote",
"entity_sensor": "Sensor Entity",
"Sensor": "Sensor",
"entity_switch": "Switch Entity",
"Switch": "Switch",
"entity_vacuum": "Vacuum Entity",
"Vacuum": "Vacuum",
"entity_weather": "Weather Entity",
"Weather": "Weather",
"external_api_rest_python": "REST API - Python bindings",
@ -106,7 +122,7 @@
"Data Entry Flow": "Data Entry Flow",
"Entity Registry": "Entity Registry",
"Extending the frontend": "Extending the frontend",
"Customizing the frontend": "Customizing the frontend",
"Custom UI": "Custom UI",
"Developing a feature": "Developing a feature",
"Development 101": "Development 101",
"Creating Platforms": "Creating Platforms",

View File

@ -9,8 +9,16 @@
"Entities": [
"entity_index",
"entity_binary_sensor",
"entity_climate",
"entity_cover",
"entity_fan",
"entity_light",
"entity_lock",
"entity_media_player",
"entity_remote",
"entity_sensor",
"entity_switch",
"entity_vacuum",
"entity_weather"
],
"Authentication": [