Skip to content
Snippets Groups Projects
Commit cf33ef32 authored by jahugg's avatar jahugg
Browse files

added voice commands

parent 65173651
No related branches found
No related tags found
No related merge requests found
......@@ -515,7 +515,11 @@ function addVoiceControls() {
let index = commands.indexOf(command); // get index of command in array
let path = availableCommands[index].path; // get corresponding path in availableCommands array
navigateToPath(path);
}
} else if (command === "select" || command === "okay") navigateToSelected();
else if (command === "open") moveDownNavigationLevel();
else if (command === "emergency call")
navigateToPath("/menu/call/emergency");
else if (command === "exit") navigateToPath("/");
};
recognition.onspeechend = function () {
......@@ -544,16 +548,8 @@ function addVoiceControls() {
availableCommands.push(command);
}
// add custom commands
availableCommands.push({ command: "exit", path: "/" });
availableCommands.push({
command: "emergency call",
path: "/menu/call/emergency",
});
// form commands array for grammarlist
commands = availableCommands.map((x) => x.command);
printLogMsg(`Voice > Commands: [${commands}]`);
}
}
......@@ -621,7 +617,7 @@ function addMotionControls() {
let targetY = averageY;
targetY = (targetY - referenceY) * -sensitivity;
// drawMotion(targetY);
drawMotion(targetY);
focusClosestItem(targetY);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment