본문 바로가기

728x90
반응형

로봇/Temi

(3)
Temi 로봇 Users&Telepresence API Telepresence String startTelepresence(String displayName, String peerId) call 하기 원하는 대상의 name과 Id를 넣으면 통화할 수 있다. name과 id는 getAllContact()를 통해 알 수 있다. call의 session Id를 리턴한다. Robot robot; robot.startTelepresence("Lily", "56414dd4364eeaf4210f9629fd200ad6"); List getAllContact() Temi의 연락처 정보가 있는 List 를 리턴한다. List tmp = robot.getAllContact(); int size = tmp.size(); for(int i=0;i
Temi 로봇 UI 관련 API Action Bar android:theme="@style/SkillTheme" AndroidManifext.xml application에 추가하면 Temi 메뉴가 보이기 위해 상단에 위치한 Action Bar를 없앨 수 있다. android:theme="@style/AppTheme" AndroidManifext.xml application에 theme style을 바꾸면 안보였던 원래의 Action Bar가 생긴다. Top Bar void showTopBar() 테미의 상단 바가 보이도록 한다. void hideTopBar() 테미의 상단 바가 안보이도록 한다. public void hideTopBar(View view) { robot.hideTopBar(); } public void showTopBa..
Temi 로봇 음성 인식 API Temi's Speech flow Wake Up("Hey Temi!") ASR(Automatic Speech Recognition) 자동 음성 인식 NLP(Natural language processing) 자연어 처리 TTS(Text to Speech) WakeUp Wake up은 "Hey, Temi" 했을 때 말하기 모드, 또는 테미의 청취 모드가 켜지는 상황이다. void wakeup() Temi를 Wake Up 시킨다. robot.wakeup(); String wakeupWord() Temi를 Wake Up 시키는 단어를 얻는다. String wakeWord = robot.wakeupWord(); Hey, temi Ding Dang Alexa wakeup word를 얻는 또다른 방법은 onWake..

728x90
반응형