예제 스크립트가 많아지면 파일및 폴더관리가 쉽지 않다.
+ADD 버튼 선택하여 Folder를 생성해서 Shell로 관리하면 된다.
물론 PC와 USB 연결해서 정리하면 훨씬 빠르겠다.
간단 명령어
pwd : 현재 위치를 보여준다.
cd scripts : scripts 폴더로 이동한다.
ls : 디렉토리내의 파일목록을 보여준다.
ls -l 또는 ll : 자세리 파일목록을 보여준다.
mv hello_android.py scripts : scripts 폴더로 hello_android.py 파일을 이동시킨다.
rm hello_android.py: 파일 삭제
사진찍기, 연속 촬영하기
import android,time
a = android.Android()
def pic():
return 'sdcard/sl4a/scripts/img/'\
+ time.strftime('%Y%m%d%H%M%S')\
+ '.jpg'
def say(it):
a.ttsSpeak(it)
a.makeToast(it)
food = 'Keeeemcheeeee!'
for i in range(3):
for j in range(3,0,-1):
say(str(j))
time.sleep(3)
say(food)
a.cameraCapturePicture(pic())
* sleep 을 위해 time을 import 한다.
* 순차적 파일명 생성을 위해서 time.strftime을 사용한 파일명 구현
'프로그래밍 > Python' 카테고리의 다른 글
[python] python으로 android phone에 웹서버 만들기 (0) | 2013.02.14 |
---|---|
[python] 파이썬으로 단어장 만들기 (0) | 2013.02.14 |
[Python] Android 에 python 설치하기. (0) | 2013.02.14 |
[Python] 기본 예제 - "예제중심의 파이썬" 1장 (0) | 2013.02.08 |
[Python] 크롬 브라우저 파이썬 쉘 - https://chrome.google.com/webstore (0) | 2013.02.08 |