I am trying to do an example of Philip Hue but the connection to the Bridge is not execute.
I think that the Problem come from thing-types.xml oder my definition of hue.thing but i am
not sure. someone can help me?
------------------------------------------------------------------------------------------------------------------------
<!-- Sample Thing Type -->
<thing-type id="sample">
<supported-bridge-type-refs>
<bridge-type-ref id="bridge" />
</supported-bridge-type-refs>
<label>Hue Binding Thing</label>
<description>Binding: Example of thing to link openHAB and Hue </description>
<channel-groups>
<channel-group id="lightness" typeId="lightness" />
</channel-groups>
</thing-type>
<!-- Sample Channel Type -->
<!-- Color Channel -->
<channel-type id="color">
<item-type>Color</item-type>
<label>Color</label>
<description>The color channel allows to control the color of a light.
It is also possible to dim values and switch the light on and off.
</description>
<tags>
<tag>Hue</tag>
<tag>ColorLamp</tag>
</tags>
<config-description>
<parameter name="lastDimValue" type="boolean" />
</config-description>
</channel-type>
<!-- Brightness Channel -->
<channel-type id="brightness">
<item-type>Dimmer</item-type>
<label>Brightness</label>
<description>The brightness channel allows to control the brightness of a light.
It is also possible to switch the light on and off.
</description>
<tags>
<tag>Hue</tag>
<tag>DimmableLamp</tag>
</tags>
<config-description>
<parameter name="lastDimValue" type="boolean" />
</config-description>
</channel-type>
<!-- Alarm System Channel -->
<channel-group-type id="lightness" advanced="false">
<label>Alarm System</label>
<description>The alarm system.</description>
<channels>
<channel id="colorId" typeId="color" />
<channel id="brightnessId" typeId="brightness" />
</channels>
</channel-group-type>
</thing:thing-descriptions>
--------------------------------------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------------------------------