media.onRemoteKeyEvent - GiGAGenie-ServiceSDK/UserGuide GitHub Wiki
gigagenie.media.onRemoteKeyEvent
API 설명
- 리모컨 키 이벤트 수신 API
- JS Keycode가 없는 리모컨 키 이벤트를 수신함
- JS Keycode는 리모컨 Key Code 가이드 참고
API 구조
- function callback(extra)
extra
key
: (String) Keycode value- ◀: "prev"
- ▶: "next"
- * : "asterisk"
- # : "sharp"
사용 예시
// callback 방식
gigagenie.media.onRemoteKeyEvent = function (extra) {
console.log("Getting onRemoteKeyEvent." + extra.key);
};