From ca9fd8c2d74b2fee660e4322ea20b668a6b954e4 Mon Sep 17 00:00:00 2001 From: Markus Birth Date: Thu, 15 Oct 2015 01:30:25 +0200 Subject: [PATCH] Initial import --- .gitignore | 1 + README.md | 22 ++++++++++++++++++++++ boot.py | 14 ++++++++++++++ config.example.py | 4 ++++ main.py | 33 +++++++++++++++++++++++++++++++++ ptpip.py | 36 ++++++++++++++++++++++++++++++++++++ theta.py | 41 +++++++++++++++++++++++++++++++++++++++++ 7 files changed, 151 insertions(+) create mode 100644 .gitignore create mode 100644 README.md create mode 100644 boot.py create mode 100644 config.example.py create mode 100644 main.py create mode 100644 ptpip.py create mode 100644 theta.py diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..31efa1c --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/config.py diff --git a/README.md b/README.md new file mode 100644 index 0000000..29c9d0e --- /dev/null +++ b/README.md @@ -0,0 +1,22 @@ +RICOH THETA m15 Remote for the WiPy +=================================== + +Use a [WiPy](http://wipy.io/) to connect to a [RICOH THETA](https://theta360.com/) camera +and trigger the shutter remotely. + +As I'm using the Expansion Board, the shutter button is connected to GP17 and pulling the pin low. +A LED is connected to GP16. + + +Preparation +----------- + +Copy the `config.example.py` to `config.py` and adjust the constants to your home wifi network. + + +Connecting to the THETA +----------------------- + +When you switch on WiFi on your THETA, it creates a network called `THETA` followed by its serial +number, e.g. `THETAXN20123456`. The numeric part of the serial number is the password. +(Only if you didn't change it in the THETA app.) diff --git a/boot.py b/boot.py new file mode 100644 index 0000000..dd08d69 --- /dev/null +++ b/boot.py @@ -0,0 +1,14 @@ +# boot.py -- run on boot-up +# can run arbitrary Python, but best to keep it minimal + +# Copy config.example.py to config.py and modify to your needs first! +import config + +from network import WLAN +wifi = WLAN(WLAN.STA) +wifi.connect(config.HOME_SSID, auth=(WLAN.WPA, config.HOME_PASSWORD)) + +from machine import UART +from os import dupterm +uart = UART(0, baudrate=115200) +dupterm(uart) diff --git a/config.example.py b/config.example.py new file mode 100644 index 0000000..b8b27f3 --- /dev/null +++ b/config.example.py @@ -0,0 +1,4 @@ +# modify and rename to config.py + +HOME_SSID = 'MyHomeNetwork' +HOME_PASSWORD = 'ultrasecret!' diff --git a/main.py b/main.py new file mode 100644 index 0000000..b823ca2 --- /dev/null +++ b/main.py @@ -0,0 +1,33 @@ +# main.py -- put your code here! + +from machine import Pin +import time +import theta + +led = Pin("GP16", Pin.OUT) + +led.toggle() + +def log(msg): + print(msg) + +def btnPressed(pin): + led.toggle() + time.sleep_us(100) + +btn = Pin("GP17", Pin.IN, Pin.PULL_UP) +btn.irq(trigger=Pin.IRQ_FALLING, handler=btnPressed) + +def home(): + global wifi + wifi.connect(config.HOME_SSID, auth=(WLAN.WPA, config.HOME_PASSWORD)) + +def tc(): + global t, p + t = theta.Theta() + p = t.connect() + if not p: + print("Connect failed!") + else: + answer = p.initCommand(b'1234567812345678', b'W\x00i\x00P\x00y\x00') + print(answer) diff --git a/ptpip.py b/ptpip.py new file mode 100644 index 0000000..2906565 --- /dev/null +++ b/ptpip.py @@ -0,0 +1,36 @@ +""" +PTP/IP class for MicroPython +@author Markus Birth +""" +import socket +import struct + +class PTPIP: + def __init__(self, ipadr): + self.socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM) + self.socket.connect((ipadr, 15740)) + self.socket.setblocking(1) # wait for answer + + def createPkg(self, pktype, payload): + pklen = len(payload) + 8 + pkg = struct.pack(' +""" + +from network import WLAN +import ptpip + +class Theta: + + def __init__(self): + self.wlan = WLAN(WLAN.STA) + pass + + def log(self, msg): + print(msg) + + def findWifi(self): + wlans = self.wlan.scan() + for w in wlans: + if w.ssid.startswith('THETA'): + self.log('Found Theta WiFi: %s' % w.ssid) + return w.ssid + return False + + def connectWifi(self, ssid): + password = ssid[-8:] + return self.wlan.connect(ssid, auth=(WLAN.WPA, password)) + + # convenience - might get removed + def connect(self): + wifi = self.findWifi() + if not wifi: + return False + self.connectWifi(wifi) + self.ptpip = ptpip.PTPIP('192.168.1.1') + return self.ptpip + + def getPTPIP(self): + return self.ptpip