[전화걸기]
adb shell am start -a android.intent.action.CALL -d tel:123-4567
[통화종료]
adb shell input keyevent KEYCODE_ENDCALL
or
adb shell input keyevent 6
[전화수신]
adb shell input keyevent 5
[5초간 대기 - DOS command]
timeout /t 5
[ 전화를 걸고 10초 뒤에 종료하는 스크립트 ]
adb shell am start -a android.intent.action.CALL -d tel:123-4567
timeout /t 10
adb shell input keyevent KEYCODE_ENDCALL
[ 자료출처 ]
https://stackoverflow.com/questions/4923550/how-to-make-a-call-via-pc-by-adb-command-on-android
https://stackoverflow.com/questions/25587147/adb-command-to-cancel-hang-up-incoming-call
https://stackoverflow.com/questions/166044/sleeping-in-a-batch-file
'Coding > Tip' 카테고리의 다른 글
Windows 10에서 글자가 사라지는 현상 (0) | 2017.06.15 |
---|---|
삼성 노트북 삼성 TV와 무선 연결 하기 (0) | 2017.05.03 |
Mac 에서 Trello PDF로 저장하기 (0) | 2015.08.28 |