Skip to content

voice.onVoiceCommand

ServiceSDK edited this page Apr 7, 2021 · 6 revisions

gigagenie.voice.onVoiceCommand

API 설명

  • 음성 명령 수신 API
  • 다음 페이지, 이전 페이지 등의 음성 명령 코드를 수신

API 구조

  • function callback(event,extra)
  • event 는 다음의 음성 명령에 대해서 String으로 전달함
    • nextPage: 다음 페이지
    • prevPage: 이전 페이지
    • naviNext: 다음으로
    • naviPrev: 이전으로
  • 확인, 취소는 getVoiceTextmode=2 에 대한 응답을 전달함
    • confirm: 확인
    • cancel: 취소

사용 예시

gigagenie.voice.onVoiceCommand = function (event) {
    switch (event) {
        case 'nextPage':
            //navigate next page
            break;
        case 'prevPage':
            //navigate prev page
            break;
        default:
            break;
    }
};

UserGuide

Clone this wiki locally