mirror of https://github.com/nymea/nymea.git
Add better description to closables
parent
ffae936125
commit
327e06367b
|
|
@ -1,3 +1,4 @@
|
|||
{
|
||||
"description": "Simple awnings which can be opened and closed. Note that awnings operate inverted compared to other closables.",
|
||||
"extends": "closable"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
{
|
||||
"description": "Simple blinds which can be opened and closed.",
|
||||
"extends": "closable"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
{
|
||||
"description": "Interface for generic devices that can be opened and closed. The process of opening or closing can be interrupted by the stop action.",
|
||||
"extends": "simpleclosable",
|
||||
"actions": [
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
{
|
||||
"description": "Awnings that support indicating their position and the moving state. Note that awnings operate inverted compared to other closables.",
|
||||
"extends": ["awning", "extendedclosable"]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
{
|
||||
"description": "Blinds that support indicating their position and the moving state.",
|
||||
"extends": ["blind", "extendedclosable"]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
{
|
||||
"description": "A more advanced form of devices that support opening and closing in a more fine grained manner. They can report whether the opening/closing is currently in progress and provide a percentage of the opening/closing position. 0% means fully opened, while 100% indicates the device is fully closed",
|
||||
"extends": "closable",
|
||||
"states": [
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
{
|
||||
"description": "Advanced roller shutters that support indicating their position and the moving state.",
|
||||
"extends": ["shutter", "extendedclosable"]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
{
|
||||
"description": "Simple roller shutters which can be opened and closed.",
|
||||
"extends": "closable"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
{
|
||||
"description": "Interface for very basic devices that support opening and closing.",
|
||||
"actions": [
|
||||
{
|
||||
"name": "open"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"extends": "extendedblind",
|
||||
"description": "Venetian blinds that can be tilted. Venetian blinds must support an angle and specify the minimum and maximum supported angle. For instance, if a venetian blinds supports tilting from horizontal to vertical by 90°, the minValue should be set to 0° and the maxValue to 90°. For venetian blinds that support tilting both direction, that is, a total of 180°, the minValue should be -90° and the maxValue should be 90°. 0° is always the horizontal position.",
|
||||
"extends": "extendedblind",
|
||||
"states": [
|
||||
{
|
||||
"name": "angle",
|
||||
|
|
|
|||
Loading…
Reference in New Issue