-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCustomVoiceCommandDefinitions.xml
More file actions
38 lines (31 loc) · 1.15 KB
/
CustomVoiceCommandDefinitions.xml
File metadata and controls
38 lines (31 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?xml version="1.0" encoding="utf-8" ?>
<VoiceCommands xmlns="http://schemas.microsoft.com/voicecommands/1.2">
<CommandSet xml:lang="en-us" Name="CustomCommands">
<CommandPrefix>Please</CommandPrefix>
<Example> Turn off the lights, Turn on the lights </Example>
<Command Name="LightsOn">
<Example> Turn on the lights </Example>
<ListenFor> Turn on the lights </ListenFor>
<Feedback> Turning on your room lights </Feedback>
<Navigate/>
</Command>
<Command Name="LightsOff">
<Example> Turn off the lights </Example>
<ListenFor> Turn off the lights </ListenFor>
<Feedback> Turning off your room lights </Feedback>
<Navigate/>
</Command>
<Command Name="LockDoor">
<Example>Lock the door</Example>
<ListenFor>Lock the door</ListenFor>
<Feedback>Locking your door</Feedback>
<Navigate/>
</Command>
<Command Name="UnlockDoor">
<Example>Unlock the door</Example>
<ListenFor>Unlock the door</ListenFor>
<Feedback>Unlocking your door</Feedback>
<Navigate/>
</Command>
</CommandSet>
</VoiceCommands>