공지사항
최근 포스트
최근 댓글
최근 트랙백
관리 메뉴

삶을 누리는 디비누스

터치로 깨우기 및 백라이트 조절 (BLD) Backlight Dimmers / Touch Wake 본문

스마트폰/넥서스 S

터치로 깨우기 및 백라이트 조절 (BLD) Backlight Dimmers / Touch Wake

케일럽 2011. 9. 29. 17:25

제가 만든건 아니고 Ezekeel님이 작성하신 코드를 Maximilian Mary님이 깨끗히 정리하셔서 번역해서 올립니다~!
i did not create any of this.  Ezekeel developed the code and Maximilian Mary compiled it into one source~! I am a mere translator.

수동으로 터미널에서 원하는 코드를 입력하시거나 init.d 쪽에 새로운 파일을 만들어 시작할때마다 자동으로 활성화하시기 바랍니다.
you can manually enter the codes at terminal or make a new file on init.d to automatically run the script.

#!/system/bin/sh

# DimmerMod Guide

# 백라이트 조절 가이드

# All credit for this mod goes to Ezekeel, who created it,

# and to the kernel devs (e.g. morfic, reddv1, and

# mathkid95) who have implemented it. If you're not

# rooted and using a kernel that supports it, such as

# Trinity, Lucid Nexus, or Matrix, don't ask why it

# doesn't work. If you don't know what I'm talking

# about, this might not be for you.

# Lines not preceded by a pound are commands that

# may be entered in terminal emulator. If you get a

# "directory nonexistent" error, your kernel does not

# support this. If you're familiar with init.d scripts, you

# know what to do.

# 이 코드를 만든 사람은 Ezekeel 이며 Maximilian Mary님이 정리한 파일을 케일럽이 번역했습니다.

# Screen Dimmer

# Screen dimmer will turn the screen off at the

# specified interval. Touching the screen will turn it

# back on. It does not play nicely with movies or other

# things that should keep the screen awake, but does

# allow the system and running apps to continue

# running, which shortens battery life. It has been

# made obsolete by touch wake dimmer. Use that

# instead.

# 스크린 조절: 정해둔 시간이 지나면 화면이 꺼지게하는 방식. 단 보통 화면 끄기와 다른 점은 화면을 만져주면 다시 켜짐. 영화같은 것을 볼때는 귀찮아질 수도 있고 화면이 꺼진 상태에서 앱이 계속 돌아가므로 배터리 소모도 심해짐. 밑에 있는 터치로 깨우기 사용하세요...

# Enable 활성화:

echo 1 > /sys/class/misc/screendimmer/enabled

# Disable 비활성화:

echo 0 > /sys/class/misc/screendimmer/enabled

# Set screen time-out delay,

# in milliseconds (example: 25 seconds). Value of 0 =

# indefinite delay (not useful for screen dimmer).

# 화면 꺼지는 시간 설정,

# 1000분의 1초 값. (0으로 하면 이상한 반응이 옵니다)

echo 25000 > /sys/class/misc/screendimmer/delay

# Touchkey Backlight Dimmer

# Touchkey backlight dimmer turns off the softkey

# backlight at the specified interval. It will turn back

# on (temporarily) when you touch the menu buttons. 

# The battery savings are negligible. It is more of a

# user experience tweak. Some people prefer the way

# the phone looks with them off, particularly when

# watching movies. It can also be useful for bln users,

# who may prefer the keys to light up only when there

# is a notification.

# 터치 백라이트 조절: 넥서스 s 의 하단에 보면 4가지 버튼이 있죠? 그 버튼을 꺼주는 코드입니다. 그리고 한번 누르면 정해준 시간만큼 켜졌다가 다시 꺼집니다. 배터리 소모랑은 거의 상관없고 사용자 용도에 따라 설정해주면 되지요... 영화같은 것을 볼때 눈에 거슬리는 것들을 없애주거나 좀더 특이한 걸 원하시는 분들을 위해... ㅋㅋ

# Disable 비활성화:

echo 0 > /sys/class/misc/backlightdimmer/enabled

# Enable 활성화:

echo 1 > /sys/class/misc/backlightdimmer/enabled

# Set backlight dimmer time-out delay,

# in milliseconds (example: 3 seconds). Value of 0 =

# indefinite delay (not useful for backlight dimmer). 

# 백라이트 꺼지는 시간 설정,

# 1000분의 1초 값 (0으로 하면 이상한 반응이 옵니다)

echo 500 > /sys/class/misc/backlightdimmer/delay

# Touch Wake

# Touch wake will keep the touch input and menu

# softkeys active for the specified delay. The screen

# timeout will work normally, but you can then wake

# the phone by touching the screen or menu buttons

# instead of the power button. If you press the power

# button (or the touch wake expires) the phone will

# then be woken only by the power button, like normal.

# If you're running CyanogenMod, you can prevent the

# lockscreen from displaying when using touch-to-wake.

# Just set CyanogenMod settings->Lockscreen->Delay

# and timeout->Screen timeout delay to the same

# interval as touchwake/delay.

# 터치로 깨우기: 화면이 꺼진 후 정해진 시간동안 터치 및 메뉴 버튼으로 화면을 다시 낄 수 있도록 설정할 수 있는 코드... 책을 읽다가 오랫동안 않만져서 화면이 꺼질때 다시 파워 버튼 누르기 힘들죠? 이 기능이 있으면 화면만 만져도 다시 켜집니다... 사이노젠모드의 화면 장금 장치를 사용하고 있으면 CyanogenMod settings >Lockscreen >Delay and timeout > Screen timeout delay 시간을 이거랑 똑같이 설정하면 화면 꺼질 때마다 장금 장치가 않뜹니다...

# Disable 비활성화:

echo 0 > /sys/class/misc/touchwake/enabled

# Enable 활성화:

echo 1 > /sys/class/misc/touchwake/enabled

# Set touch wake time-out delay,

# in milliseconds (example: 5 minutes). Value of 0 =

# indefinite delay (If you do this, touch wake will stay

# active indefinitely. Press the power button to disable

# it when you put the phone in your pocket.)

# 터치로 깨우기 시간 설정

# 1000분의 1초 값 (0으로 하면 화면이 자동으로 꺼지면 항상 터치로 깨울 수 있습니다. 주머니에 놓기 전에는 꼭 파워 버튼을 사용하세요)

echo 5000 > /sys/class/misc/touchwake/delay

# This guide brought to you by Maximilian Mary & translated to Korean by Caleb.

# Maximilian Mary님이 만든 가이드를 케일럽이 번역했습니다.

출처 Source: http://forum.xda-developers.com/showthread.php?p=17239649#post17239649

제가 사용하고 있는 샘플 파일을 첨부합니다~ 파일을 받을때 꼭 확장명 없이 받으시고 편집할 때는 notepad++ 프로그램을 사용하시기 바랍니다.
i included the file that i am currently using. make sure you download it without the extension and use notepad++ program to edit.

90ezekeel


이렇게 설정했을 때 아래 사진처럼 하단에 있는 메뉴 등 4개의 버튼이 없어졌습니다!
when you set it up as above, 4 buttons including menu on the bottom is gone!




댓글 건 | 트랙백 건