[tradfri] Use system default channel types for lights (#9864)
Signed-off-by: Christoph Weitkamp <github@christophweitkamp.de>pull/9941/head
parent
6ddf5ec9fd
commit
ac3e4e31a3
|
@ -37,11 +37,5 @@ thing-type.config.tradfri.device.id.label = ID des Ger
|
||||||
thing-type.config.tradfri.device.id.description = ID zur Identifikation des Gerätes.
|
thing-type.config.tradfri.device.id.description = ID zur Identifikation des Gerätes.
|
||||||
|
|
||||||
# channel types
|
# channel types
|
||||||
channel-type.tradfri.brightness.label = Helligkeit
|
|
||||||
channel-type.tradfri.brightness.description = Ermöglicht die Steuerung der Helligkeit. Ermöglicht ebenfalls die Lampe ein- und auszuschalten.
|
|
||||||
channel-type.tradfri.color_temperature.label = Farbtemperatur
|
|
||||||
channel-type.tradfri.color_temperature.description = Ermöglicht die Steuerung der Farbtemperatur. Von Tageslichtweiß (0) bis Warmweiß (100).
|
|
||||||
channel-type.tradfri.color.label = Farbe
|
|
||||||
channel-type.tradfri.color.description = Ermöglicht die Steuerung der Farbe.
|
|
||||||
channel-type.tradfri.position.label = Position
|
channel-type.tradfri.position.label = Position
|
||||||
channel-type.tradfri.position.description = Ermöglicht die Steuerung der Position von Offen (0) bis Geschlossen (100).
|
channel-type.tradfri.position.description = Ermöglicht die Steuerung der Position von Offen (0) bis Geschlossen (100).
|
||||||
|
|
|
@ -41,7 +41,7 @@
|
||||||
<description>A light that has continuous brightness control.</description>
|
<description>A light that has continuous brightness control.</description>
|
||||||
|
|
||||||
<channels>
|
<channels>
|
||||||
<channel id="brightness" typeId="brightness"/>
|
<channel id="brightness" typeId="system.brightness"/>
|
||||||
</channels>
|
</channels>
|
||||||
|
|
||||||
<representation-property>id</representation-property>
|
<representation-property>id</representation-property>
|
||||||
|
@ -58,8 +58,8 @@
|
||||||
<description>A dimmable light that supports different color temperature settings.</description>
|
<description>A dimmable light that supports different color temperature settings.</description>
|
||||||
|
|
||||||
<channels>
|
<channels>
|
||||||
<channel id="brightness" typeId="brightness"/>
|
<channel id="brightness" typeId="system.brightness"/>
|
||||||
<channel id="color_temperature" typeId="color_temperature"/>
|
<channel id="color_temperature" typeId="system.color-temperature"/>
|
||||||
</channels>
|
</channels>
|
||||||
|
|
||||||
<representation-property>id</representation-property>
|
<representation-property>id</representation-property>
|
||||||
|
@ -76,8 +76,8 @@
|
||||||
<description>A dimmable light that supports full colors and color temperature settings.</description>
|
<description>A dimmable light that supports full colors and color temperature settings.</description>
|
||||||
|
|
||||||
<channels>
|
<channels>
|
||||||
<channel id="color_temperature" typeId="color_temperature"/>
|
<channel id="color_temperature" typeId="system.color-temperature"/>
|
||||||
<channel id="color" typeId="color"/>
|
<channel id="color" typeId="system.color"/>
|
||||||
</channels>
|
</channels>
|
||||||
|
|
||||||
<representation-property>id</representation-property>
|
<representation-property>id</representation-property>
|
||||||
|
@ -176,16 +176,6 @@
|
||||||
<config-description-ref uri="thing-type:tradfri:device"/>
|
<config-description-ref uri="thing-type:tradfri:device"/>
|
||||||
</thing-type>
|
</thing-type>
|
||||||
|
|
||||||
<channel-type id="brightness">
|
|
||||||
<item-type>Dimmer</item-type>
|
|
||||||
<label>Brightness</label>
|
|
||||||
<description>Control the brightness and switch the light on and off.</description>
|
|
||||||
<category>DimmableLight</category>
|
|
||||||
<tags>
|
|
||||||
<tag>Lighting</tag>
|
|
||||||
</tags>
|
|
||||||
</channel-type>
|
|
||||||
|
|
||||||
<channel-type id="position">
|
<channel-type id="position">
|
||||||
<item-type>Rollershutter</item-type>
|
<item-type>Rollershutter</item-type>
|
||||||
<label>Position</label>
|
<label>Position</label>
|
||||||
|
@ -193,18 +183,4 @@
|
||||||
<category>Blinds</category>
|
<category>Blinds</category>
|
||||||
</channel-type>
|
</channel-type>
|
||||||
|
|
||||||
<channel-type id="color_temperature">
|
|
||||||
<item-type>Dimmer</item-type>
|
|
||||||
<label>Color Temperature</label>
|
|
||||||
<description>Control the color temperature of the light.</description>
|
|
||||||
<category>ColorLight</category>
|
|
||||||
</channel-type>
|
|
||||||
|
|
||||||
<channel-type id="color">
|
|
||||||
<item-type>Color</item-type>
|
|
||||||
<label>Color</label>
|
|
||||||
<description>Control the color of the light.</description>
|
|
||||||
<category>ColorLight</category>
|
|
||||||
</channel-type>
|
|
||||||
|
|
||||||
</thing:thing-descriptions>
|
</thing:thing-descriptions>
|
||||||
|
|
Loading…
Reference in New Issue