├── .gitignore ├── README.md ├── doc └── thetapylib.html ├── examples ├── deskTHETA │ ├── README.md │ ├── deskTHETA.py │ ├── fnt │ │ ├── Lato-Bold.ttf │ │ └── Lato-Thin.ttf │ ├── icon │ │ ├── camera_icon.png │ │ ├── camera_icon2.png │ │ ├── download.png │ │ ├── stop_icon.png │ │ └── video.png │ ├── img │ │ ├── ricoh-theta-s.png │ │ └── theta_developers.png │ └── thetapylib.py ├── fnt │ └── Lato-Thin.ttf ├── img │ ├── ricoh-theta-s.png │ └── theta_developers.png ├── javascript │ ├── README.md │ ├── js │ │ └── jquery-1.11.3.min.js │ └── thetaJSTest_will_not_work.html ├── kivy │ └── ping │ │ ├── fnt │ │ └── Lato-Thin.ttf │ │ ├── img │ │ ├── ricoh-theta-s.png │ │ └── theta_developers.png │ │ ├── main.py │ │ ├── ping.kv │ │ ├── thetaPythonTest.py │ │ ├── thetaPythonTest.pyc │ │ └── thetapylib.py ├── pyTHETA │ ├── README.md │ ├── pyTHETA.py │ └── thetapylib.py ├── raspberryTHETA │ ├── .bash_profile │ ├── README.md │ ├── fnt │ │ ├── Lato-Bold.ttf │ │ └── Lato-Thin.ttf │ ├── icon │ │ ├── camera_icon.png │ │ ├── camera_icon2.png │ │ ├── download.png │ │ ├── stop_icon.png │ │ ├── timer_icon.png │ │ └── video.png │ ├── img │ │ ├── ricoh-theta-s.png │ │ └── theta_developers.png │ ├── led.py │ ├── pyTHETA.py │ ├── raspberryTHETA.py │ ├── raspberry_led.py │ └── thetapylib.py ├── thetaPythonDesktop.py └── thetaPythonTest.py ├── pyTHETA.py └── thetapylib.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetricity/theta-s-api-tests/HEAD/README.md -------------------------------------------------------------------------------- /doc/thetapylib.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetricity/theta-s-api-tests/HEAD/doc/thetapylib.html -------------------------------------------------------------------------------- /examples/deskTHETA/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetricity/theta-s-api-tests/HEAD/examples/deskTHETA/README.md -------------------------------------------------------------------------------- /examples/deskTHETA/deskTHETA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetricity/theta-s-api-tests/HEAD/examples/deskTHETA/deskTHETA.py -------------------------------------------------------------------------------- /examples/deskTHETA/fnt/Lato-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetricity/theta-s-api-tests/HEAD/examples/deskTHETA/fnt/Lato-Bold.ttf -------------------------------------------------------------------------------- /examples/deskTHETA/fnt/Lato-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetricity/theta-s-api-tests/HEAD/examples/deskTHETA/fnt/Lato-Thin.ttf -------------------------------------------------------------------------------- /examples/deskTHETA/icon/camera_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetricity/theta-s-api-tests/HEAD/examples/deskTHETA/icon/camera_icon.png -------------------------------------------------------------------------------- /examples/deskTHETA/icon/camera_icon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetricity/theta-s-api-tests/HEAD/examples/deskTHETA/icon/camera_icon2.png -------------------------------------------------------------------------------- /examples/deskTHETA/icon/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetricity/theta-s-api-tests/HEAD/examples/deskTHETA/icon/download.png -------------------------------------------------------------------------------- /examples/deskTHETA/icon/stop_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetricity/theta-s-api-tests/HEAD/examples/deskTHETA/icon/stop_icon.png -------------------------------------------------------------------------------- /examples/deskTHETA/icon/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetricity/theta-s-api-tests/HEAD/examples/deskTHETA/icon/video.png -------------------------------------------------------------------------------- /examples/deskTHETA/img/ricoh-theta-s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetricity/theta-s-api-tests/HEAD/examples/deskTHETA/img/ricoh-theta-s.png -------------------------------------------------------------------------------- /examples/deskTHETA/img/theta_developers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetricity/theta-s-api-tests/HEAD/examples/deskTHETA/img/theta_developers.png -------------------------------------------------------------------------------- /examples/deskTHETA/thetapylib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetricity/theta-s-api-tests/HEAD/examples/deskTHETA/thetapylib.py -------------------------------------------------------------------------------- /examples/fnt/Lato-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetricity/theta-s-api-tests/HEAD/examples/fnt/Lato-Thin.ttf -------------------------------------------------------------------------------- /examples/img/ricoh-theta-s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetricity/theta-s-api-tests/HEAD/examples/img/ricoh-theta-s.png -------------------------------------------------------------------------------- /examples/img/theta_developers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetricity/theta-s-api-tests/HEAD/examples/img/theta_developers.png -------------------------------------------------------------------------------- /examples/javascript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetricity/theta-s-api-tests/HEAD/examples/javascript/README.md -------------------------------------------------------------------------------- /examples/javascript/js/jquery-1.11.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetricity/theta-s-api-tests/HEAD/examples/javascript/js/jquery-1.11.3.min.js -------------------------------------------------------------------------------- /examples/javascript/thetaJSTest_will_not_work.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetricity/theta-s-api-tests/HEAD/examples/javascript/thetaJSTest_will_not_work.html -------------------------------------------------------------------------------- /examples/kivy/ping/fnt/Lato-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetricity/theta-s-api-tests/HEAD/examples/kivy/ping/fnt/Lato-Thin.ttf -------------------------------------------------------------------------------- /examples/kivy/ping/img/ricoh-theta-s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetricity/theta-s-api-tests/HEAD/examples/kivy/ping/img/ricoh-theta-s.png -------------------------------------------------------------------------------- /examples/kivy/ping/img/theta_developers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetricity/theta-s-api-tests/HEAD/examples/kivy/ping/img/theta_developers.png -------------------------------------------------------------------------------- /examples/kivy/ping/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetricity/theta-s-api-tests/HEAD/examples/kivy/ping/main.py -------------------------------------------------------------------------------- /examples/kivy/ping/ping.kv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetricity/theta-s-api-tests/HEAD/examples/kivy/ping/ping.kv -------------------------------------------------------------------------------- /examples/kivy/ping/thetaPythonTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetricity/theta-s-api-tests/HEAD/examples/kivy/ping/thetaPythonTest.py -------------------------------------------------------------------------------- /examples/kivy/ping/thetaPythonTest.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetricity/theta-s-api-tests/HEAD/examples/kivy/ping/thetaPythonTest.pyc -------------------------------------------------------------------------------- /examples/kivy/ping/thetapylib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetricity/theta-s-api-tests/HEAD/examples/kivy/ping/thetapylib.py -------------------------------------------------------------------------------- /examples/pyTHETA/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetricity/theta-s-api-tests/HEAD/examples/pyTHETA/README.md -------------------------------------------------------------------------------- /examples/pyTHETA/pyTHETA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetricity/theta-s-api-tests/HEAD/examples/pyTHETA/pyTHETA.py -------------------------------------------------------------------------------- /examples/pyTHETA/thetapylib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetricity/theta-s-api-tests/HEAD/examples/pyTHETA/thetapylib.py -------------------------------------------------------------------------------- /examples/raspberryTHETA/.bash_profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetricity/theta-s-api-tests/HEAD/examples/raspberryTHETA/.bash_profile -------------------------------------------------------------------------------- /examples/raspberryTHETA/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetricity/theta-s-api-tests/HEAD/examples/raspberryTHETA/README.md -------------------------------------------------------------------------------- /examples/raspberryTHETA/fnt/Lato-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetricity/theta-s-api-tests/HEAD/examples/raspberryTHETA/fnt/Lato-Bold.ttf -------------------------------------------------------------------------------- /examples/raspberryTHETA/fnt/Lato-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetricity/theta-s-api-tests/HEAD/examples/raspberryTHETA/fnt/Lato-Thin.ttf -------------------------------------------------------------------------------- /examples/raspberryTHETA/icon/camera_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetricity/theta-s-api-tests/HEAD/examples/raspberryTHETA/icon/camera_icon.png -------------------------------------------------------------------------------- /examples/raspberryTHETA/icon/camera_icon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetricity/theta-s-api-tests/HEAD/examples/raspberryTHETA/icon/camera_icon2.png -------------------------------------------------------------------------------- /examples/raspberryTHETA/icon/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetricity/theta-s-api-tests/HEAD/examples/raspberryTHETA/icon/download.png -------------------------------------------------------------------------------- /examples/raspberryTHETA/icon/stop_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetricity/theta-s-api-tests/HEAD/examples/raspberryTHETA/icon/stop_icon.png -------------------------------------------------------------------------------- /examples/raspberryTHETA/icon/timer_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetricity/theta-s-api-tests/HEAD/examples/raspberryTHETA/icon/timer_icon.png -------------------------------------------------------------------------------- /examples/raspberryTHETA/icon/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetricity/theta-s-api-tests/HEAD/examples/raspberryTHETA/icon/video.png -------------------------------------------------------------------------------- /examples/raspberryTHETA/img/ricoh-theta-s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetricity/theta-s-api-tests/HEAD/examples/raspberryTHETA/img/ricoh-theta-s.png -------------------------------------------------------------------------------- /examples/raspberryTHETA/img/theta_developers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetricity/theta-s-api-tests/HEAD/examples/raspberryTHETA/img/theta_developers.png -------------------------------------------------------------------------------- /examples/raspberryTHETA/led.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetricity/theta-s-api-tests/HEAD/examples/raspberryTHETA/led.py -------------------------------------------------------------------------------- /examples/raspberryTHETA/pyTHETA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetricity/theta-s-api-tests/HEAD/examples/raspberryTHETA/pyTHETA.py -------------------------------------------------------------------------------- /examples/raspberryTHETA/raspberryTHETA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetricity/theta-s-api-tests/HEAD/examples/raspberryTHETA/raspberryTHETA.py -------------------------------------------------------------------------------- /examples/raspberryTHETA/raspberry_led.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetricity/theta-s-api-tests/HEAD/examples/raspberryTHETA/raspberry_led.py -------------------------------------------------------------------------------- /examples/raspberryTHETA/thetapylib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetricity/theta-s-api-tests/HEAD/examples/raspberryTHETA/thetapylib.py -------------------------------------------------------------------------------- /examples/thetaPythonDesktop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetricity/theta-s-api-tests/HEAD/examples/thetaPythonDesktop.py -------------------------------------------------------------------------------- /examples/thetaPythonTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetricity/theta-s-api-tests/HEAD/examples/thetaPythonTest.py -------------------------------------------------------------------------------- /pyTHETA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetricity/theta-s-api-tests/HEAD/pyTHETA.py -------------------------------------------------------------------------------- /thetapylib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetricity/theta-s-api-tests/HEAD/thetapylib.py --------------------------------------------------------------------------------