mirror of
https://github.com/Fishwaldo/open-zwave.git
synced 2025-03-15 19:41:36 +00:00
and Mac to check all the xml files in the config directory. MinOZW make files will check their local zwcfg and zwscene xml. Reorder how HidController terminates to avoid memory corruption. Check for messages with source node info of 0 (not reported) on IsExpectedReply. Update MinOZW for both Linux and Mac to process a usb argument and to actually run for 3 minutes then terminate.
28 lines
1 KiB
XML
28 lines
1 KiB
XML
<?xml version='1.0'?>
|
|
<xs:schema
|
|
xmlns:xs='http://www.w3.org/2001/XMLSchema'
|
|
targetNamespace='http://code.google.com/p/open-zwave/'
|
|
xmlns:Scenes='http://code.google.com/p/open-zwave/'
|
|
elementFormDefault='qualified'>
|
|
|
|
<xs:element name='Scenes'>
|
|
<xs:complexType>
|
|
<xs:sequence>
|
|
<xs:element ref='Scenes:Value' minOccurs='0' maxOccurs='unbounded'/>
|
|
</xs:sequence>
|
|
<xs:attribute name='version' type='xs:string' use='required'/>
|
|
</xs:complexType>
|
|
</xs:element>
|
|
|
|
<xs:element name='Value'>
|
|
<xs:complexType>
|
|
<xs:attribute name='homeId' type='xs:string' use='required'/>
|
|
<xs:attribute name='nodeId' type='xs:string' use='required'/>
|
|
<xs:attribute name='genre' type='xs:string' use='required'/>
|
|
<xs:attribute name='commandClassId' type='xs:string' use='required'/>
|
|
<xs:attribute name='instance' type='xs:string' use='required'/>
|
|
<xs:attribute name='index' type='xs:string' use='required'/>
|
|
<xs:attribute name='type' type='xs:string' use='required'/>
|
|
</xs:complexType>
|
|
</xs:element>
|
|
</xs:schema>
|