如何使用 sl4a Python 打开和关闭相机 LED?最大强度没问题。
android.* 中的任何内容?
这是代码:
import sys
def toggle_LED(action="on"):
if action == 'on':
with open('/sys/class/leds/torch-flash/flash_light', 'w') as on:
on.write('1')
elif action == 'off':
with open('/sys/class/leds/torch-flash/flash_light', 'w') as off:
off.write('0')
if __name__ == '__main__':
toggle_LED()
while True:
if strip(sys.stdin.read())[0] == 'q':
toggle_LED(action='off')
sys.exit()
编辑:手机是华为Ideos X5 U8800H