|---------------|---------------|------------------|--------------------------------------------------------|
| status | String | garagedoor | opening, closed, closing, stopped, transition, unknown |
| rollershutter | Rollershutter | garagedoor | UP, DOWN, 0%, 100% |
-| switch | Switch | garagedoor, lamp | ON (open), OFF (closed)
+| closeError | Switch | garagedoor | ON (has error), OFF (doesn't have error) |
+| openError | Switch | garagedoor | ON (has error), OFF (doesn't have error) |
+| switch | Switch | garagedoor, lamp | ON (open), OFF (closed) |
## Full Example
```xtend
String MyQGarageDoor1Status "Door Status [%s]" {channel = "myq:garagedoor:home:abcd12345:status"}
Switch MyQGarageDoor1Switch "Door Switch [%s]" {channel = "myq:garagedoor:home:abcd12345:switch"}
+Switch MyQGarageDoor1CloseError "Door Close Error [%s]" {channel = "myq:garagedoor:home:abcd12345:closeError"}
+Switch MyQGarageDoor1OpenError "Door OpenError [%s]" {channel = "myq:garagedoor:home:abcd12345:openError"}
Rollershutter MyQGarageDoor1Rollershutter "Door Rollershutter [%s]" {channel = "myq:garagedoor:home:abcd12345:rollershutter"}
Switch MyQGarageDoorLamp "Lamp [%s]" {channel = "myq:lamp:home:efgh6789:switch"}
}
<channel id="status" typeId="doorstatus"/>
<channel id="switch" typeId="doorswitch"/>
<channel id="rollershutter" typeId="doorrollershutter"/>
+ <channel id="closeerror" typeId="doorcloseerror"/>
+ <channel id="openerror" typeId="dooropenerror"/>
</channels>
<representation-property>serialNumber</representation-property>
<config-description-ref uri="thing-type:myq:garagedoor"/>
<item-type>Rollershutter</item-type>
<label>Garage Door Rollershutter</label>
</channel-type>
+ <channel-type id="doorcloseerror">
+ <item-type>Switch</item-type>
+ <label>Garage Door Close Error</label>
+ <state readOnly="true"/>
+ </channel-type>
+ <channel-type id="dooropenerror">
+ <item-type>Switch</item-type>
+ <label>Garage Door Open Error</label>
+ <state readOnly="true"/>
+ </channel-type>
<channel-type id="lampswitch">
<item-type>Switch</item-type>
<label>Lamp Switch</label>