본문 바로가기

겨울철 자동차 계기판 경고등 7가지 타이어 공기압이 낮아져 점등되는 TPMS 경고등 요즘 생산되는 자동차에는 기본적으로 TPMS가 기본으로 적용되어 있어 정비소에 가지않고 자동차 내부에서 공기압 수치를 알 수 있다. 온도가 낮아지는 겨울에는 타이어 내부 공기가 수축해 공기압이 떨어지게 된다. 공기압이 낮아질 경우 타이어와 지면의 접촉면이 넓어지면서 연비에 악영향을 끼치고 타이어 마모가 바르게 발생할 수 있다. 또한, 이때 발생할 수 있는 사고는 낮은 타이어 공기압 상태에서 고속 주행 시 스탠딩 웨이브가 발생하는데 바퀴 축은 빠르게 도는데 바퀴겉면(지면과 닫는) 부분은 느리게 돌아 바퀴가 터질 수 있다. 배터리가 방전되어 점등되는 배터리 경고등 배터리는 추위에 약하다. (아이폰 6 너무 약하다..) 온도가 낮아지면 배터리 내부에서 이온 이동.. 더보기
Source Insight 한글이름 오류(소스인사이트 Unable to open or create the project directory file C:\Users\홍길동\...) This error is happening because Source Insight is not able to write or create a file in your Projects folder, which is in here by default: C:\Users\USERNAME\Documents\Source Insight 4.0\Projects (where USERNAME is your account user name) 디폴트 위치에 한글이 들어가서 발생하는 오류입니다. 이를 해결하기 위해선 Window + R , regedit , Enter Registry Editor 에서 \HKEY_CURRENT_USER\Software\Source Dynamics\Source Insight\4.0\Paths 들어.. 더보기
ADB 명령어 관리자 권한으로 실행하기. cmd 창에서 adb shell "su root ls /abc/def"하면 /adb/def 폴더아래 내용을 ls 관리자 명령어로 볼 수 있습니다. ex) adb shell "su root chmod -Rf 777 /abc/def"하면 /def 폴더와 그 하위 파일의 rw 권한이 모두 허가됩니다. (chmod 777 명령어) 더보기
adb 명령어 주로 사용하는 adb 명령어 정리 매번 검색해서 보곤 또 까먹어서 찾으로 다녀서 이곳에 정리 adb devices 연결된 장비의 이름과 상태를 알려준다. $ adb devicesList of devices attached[device_name1] device[device_name2] connecting 한번에 2개 이상의 장비를 연결한 경우 adb 뒤에 -s (select)옵션으로 adb 명령어를 날릴 수 있다. $ adb -s [device_name1] shell root@어쩌구저쩌구 : / # 가 나오지만 $ adb -s [device_name2] shell하면 안나옵니다. -wait for device- 이런거 떳던기억이... 상태가 connecting 이기 때문입니다. 이경우 장비를 reboot하.. 더보기
안드로이드 드래그? 이벤트 (adb shell input swipe) adb shell input swipe 500 500 100 1000 100 command: adb shell input swipe xSource, ySource, xDestination, yDestination, Duration ex) adb shell input swipe 500 500 100 1000 100-> (500, 500) 좌표에서 (100,1000)로 100ms동안 터치를 해서 움직인다. 응용 :Source x,y 와 Destination x,y를 같게 설정하고 Duration만 길게하면 길게터치 (Long Press)가 된다. 더보기
안드로이드 터치 이벤트 (adb shell input tap) adb shell input tap 500 500 Command: adb shell input tap xPosition YPosition (xPosition, yPosition은 tap하고자 하는 위치를 의미) 설명: xPosition, yPosition 위치에 짧게 터치. xPosition, yPosition을 쉽게 찾는 방법은 Developer Options에서 “Show Pointer Location”을 On 하면 단말 화면 위에 터치하는 부분의 X, Y Position 값을 확인 할 수 있다. 더보기
안드로이드 키 이벤트 (adb shell input keyevent) 가장 많이 쓰는 거 Home키- adb shell input KEYCODE_HOME- adb shell input keyevent 3 Back키-adb shell input KEYCODE_BACK-adb shell input keyevent 4 Option키-adb shell input KEYCODE_MENU-adb shell input keyevent 1 usage: input [text|keyevent] input text input keyevent 0 --> "KEYCODE_UNKNOWN" 1 --> "KEYCODE_MENU" 2 --> "KEYCODE_SOFT_RIGHT" 3 --> "KEYCODE_HOME" 4 --> "KEYCODE_BACK" 5 --> "KEYCODE_CALL" 6 --> ".. 더보기